@foggy - @sdetweil may be onto something. I jsut added your url to my config.js file and I now get the BBC just fine.
I also wonder whether the "{ " and “}” brackets are required but missing in your feeds array? I have each feed url in its own brackets and it works for me. See my config below, modified to add your BBC url.
@sdetweil - related question: In the[recent] past my system has always restarted Magic Mirror when i commit a change to config.js using control-O, but lately it doesn’t and I have to manually restart MM. Is this expected behavior?
Here is the file MagicMirror/config/config.js now correctly displaying BBC news.
{module: "newsfeed",
disabled: false,
tableClass: "small",
position: "bottom_center", // bottom_center bottom_bar
config: {
feeds: [
{ title: "New York Times", url: "https://rss.nytimes.com/services/xml/rss/nyt/HomePage.xml" },
{ title: "BBC", url: "https://feeds.bbci.co.uk/news/world/rss.xml"},
{ title: "Las Vegas Review Journal", url: "https://www.reviewjournal.com/feed/" },
{ title: "Detroit Metro Times", url: "https://www.metrotimes.com/detroit/Rss.xml" },
],
reloadInterval: 600000, // Content fetch interval - 600000 = 10 minutes
updateInterval: 15000, //Display new headline interval - default = 10000 milliseconds / 10 seconds
showSourceTitle: true,
showPublishDate: true,
broadcastNewsFeeds: false,
broadcastNewsUpdates: false
} },