Hello,
I’m wondering if anyone can help me fix why the news is showing headlines older than 2 days when I have the config statement that states ignore news older than 2 days. Did I implement it wrong? Am I missing something?
Thanks in advance.
{
module: "newsfeed",
position: "bottom_bar",
config: {
feeds: [
{
title: "CBC Windsor News",
url: "https://www.cbc.ca/cmlink/rss-canada-windsor"
},
{
title: "Windsor Star News",
url: "http://windsorstar.com/category/news/local-news/feed"
},
{
title: "CBC Top Stories News",
url: "https://www.cbc.ca/cmlink/rss-topstories"
}
],
showSourceTitle: true,
showPublishDate: true,
broadcastNewsFeeds: true,
broadcastNewsUpdates: true,
ignoreOlderThan: 172800000 //Ignore news older than 2 days (2days->172800000ms)
}
},