adjusting check for null feed

This commit is contained in:
John Facey
2022-06-26 18:33:46 -05:00
parent 893916d3cd
commit f169fda24d

View File

@@ -174,7 +174,8 @@ exports.loadFeeds = function () {
console.log(err + " " + feedBlock.link);
//return;
}
if (feed.items !== null) {
if (feed !== null) {
feed.items.forEach(item => {
var foundFeed = false;
linkFlayerMap.forEach(linkFlay => {