A New Chapter for MagicMirror: The Community Takes the Lead
Read the statement by Michael Teeuw here.
Read the statement by Michael Teeuw here.
Newfeet only show the last rss feed
-
Hello,
in my newsfeed module I have three rss feeds. The module only shows the last one on the mirror.
Is this correct?
Sebastian -
@shgmongohh Could you post the newsfeed part of your config?
-
@MichMich
Here is my newsfeed configmodule: 'newsfeed', position: 'bottom_bar', config: { feeds: [ { title: "Spiegel", url: "http://www.spiegel.de/schlagzeilen/tops/index.rss", title: "Sueddeutsche", url: "http://rss.sueddeutsche.de/rss/Topthemen", title: "Tagesschau", url: "http://www.tagesschau.de/xml/rss2" } ], showSourceTitle: true, showPublishDate: true } }
Sebastian
-
Break them up:
feeds: [ { title: "Spiegel", url: "http://www.spiegel.de/schlagzeilen/tops/index.rss", }, { title: "Sueddeutsche", url: "http://rss.sueddeutsche.de/rss/Topthemen", }, { title: "Tagesschau", url: "http://www.tagesschau.de/xml/rss2" } ],
-
@KirAsh4
Thank you. It woks fine!Sebastian