Kodi Community Forum

Full Version: Second RSS feed not appearing, why?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,

I don't know exactly since when, but I noticed today that with the current Kodi version, my second RSS feed in my RSS config doesn't seem to work, although the address seems valid when typed in my webbrowser.

Here is what my RssFeeds.xml looks like:

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rssfeeds>
  <!--RSS feeds. To have multiple feeds, just add a feed to the set. You can also have multiple sets.-->
  <!--To use different sets in your skin, each must be called from skin with a unique id.-->
  <set id="1">
    <feed updateinterval="5">http://www.spiegel.de/schlagzeilen/index.rss</feed>
    <feed updateinterval="5">http://www.heise.de/newsticker/heise-atom.xml</feed>
  </set>
</rssfeeds>

What happens is: I see the first newsfeed (Spiegel), and when it is over, it is displayed again, and "Heise" newsfeed never appears.
I believe your code should be:

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rssfeeds>
  <!--RSS feeds. To have multiple feeds, just add a feed to the set. You can also have multiple sets.-->
  <!--To use different sets in your skin, each must be called from skin with a unique id.-->
  <set id="1">
    <feed updateinterval="5">http://www.spiegel.de/schlagzeilen/index.rss</feed>
  </set>
  <set id="2">
    <feed updateinterval="5">http://www.heise.de/newsticker/heise-atom.xml</feed>
  </set>
</rssfeeds>

Edit: Actually, you are right. Your version should work as well.