dont kill favicons on feed update

This commit is contained in:
Bernhard Posselt 2013-04-17 11:53:59 +02:00
Родитель 1fbcd35ac8
Коммит 9452c4bf7f
2 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -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 + ')';
}
/*