trying re-patch loading stream

This commit is contained in:
John Facey
2022-06-26 18:32:05 -05:00
parent f1c5ed850b
commit 893916d3cd

View File

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