Kodi Community Forum

Full Version: RSS Feeds
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hey guys!

Don't know if this is the right place for this kind of question. But I'll give it a go.
I'm using my own RSS generator that creates a RSS feed without any problem.
The problem comes when KODI reads the RSS (xml file).

There are no blank lines in my code since it's created dynamically and it seems like KODI need it to be just like below to read the RSS.
Why is it like this and is there any way to get KODI understand the exact same code without the blank spaces between each item?
As you see below the codes are exactly the same compared to the blank lines. So, just don't understand why. Someone who knows?

Thanks / T

KODI understandable code.
Code:
<rss version="2.0">
<channel>
  <title>My RSS Feed</title>
  
  <item>
   <title>Hello everyone!</title>
  </item>
  
  <item>
   <title>Updates are coming soon. Stay tuned!</title>
  </item>
  
  <item>
   <title>Enjoy your day.</title>
  </item>
  
</channel>
</rss>

KODI non understandable code
Code:
<rss version="2.0">
<channel>
  <title>My RSS Feed</title>  
  <item>
   <title>Hello everyone!</title>
  </item>  
  <item>
   <title>Updates are coming soon. Stay tuned!</title>
  </item>  
  <item>
   <title>Enjoy your day.</title>
  </item>  
</channel>
</rss>
Can you provide a link to you RSS feed, which doesn't work in Kodi?