diff --git a/webclient/src/Feed.js b/webclient/src/Feed.js index 944121d..40bdfdb 100644 --- a/webclient/src/Feed.js +++ b/webclient/src/Feed.js @@ -54,7 +54,7 @@ function Feed({ updateCache, filterSmallweb, feedSources }) { async (result) => { const newApiStories = result.stories; - const updated = !stories || !stories.length || stories[0].id !== newApiStories[0].id; + const updated = !stories || stories.map(s => s.id).join() !== newApiStories.map(s => s.id).join(); console.log('New stories available:', updated); if (!updated) return;