зеркало из https://github.com/nextcloud/news.git
dont kill favicons on feed update
This commit is contained in:
Родитель
1fbcd35ac8
Коммит
9452c4bf7f
|
@ -40,7 +40,7 @@ angular.module('News').factory 'FeedModel',
|
|||
if data.faviconLink == null
|
||||
data.faviconLink = 'url(' +
|
||||
@_utils.imagePath('news', 'rss.svg') + ')'
|
||||
else
|
||||
else if angular.isDefined(data.faviconLink)
|
||||
data.faviconLink = 'url(' + data.faviconLink + ')'
|
||||
###
|
||||
We want to add a feed on the client side before
|
||||
|
|
|
@ -1602,7 +1602,7 @@ License along with this library. If not, see <http://www.gnu.org/licenses/>.
|
|||
}
|
||||
if (data.faviconLink === null) {
|
||||
data.faviconLink = 'url(' + this._utils.imagePath('news', 'rss.svg') + ')';
|
||||
} else {
|
||||
} else if (angular.isDefined(data.faviconLink)) {
|
||||
data.faviconLink = 'url(' + data.faviconLink + ')';
|
||||
}
|
||||
/*
|
||||
|
|
Загрузка…
Ссылка в новой задаче