quick fix to prevent issues with feeds that omit url and link

This commit is contained in:
derwehr 2016-11-07 20:46:28 +01:00
parent 66ef72a040
commit 41327bfb03

View File

@ -46,7 +46,7 @@ var Fetcher = function(url, reloadInterval, encoding) {
var title = item.title;
var description = item.description || item.summary || item.content || '';
var pubdate = item.pubdate || item.published || item.updated;
var url = item.url || item.link;
var url = item.url || item.link || '';
if (title && pubdate) {