Kodi Community Forum
Unclosed tag in settings.xml - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Development (https://forum.kodi.tv/forumdisplay.php?fid=32)
+--- Forum: Scrapers (https://forum.kodi.tv/forumdisplay.php?fid=60)
+--- Thread: Unclosed tag in settings.xml (/showthread.php?tid=77578)



Unclosed tag in settings.xml - Daniel Malmgren - 2010-07-21

Hi all
I don't know if this is something general or just my scraper, but an observant user notified me about the filmdelta scraper not fetching fanart anymore. The problem seems to be a unclosed tag in the settings.xml file for the scraper, ie this tag:

Code:
<setting label="30000" type="bool" id="fanart" default="true">

should look like this

Code:
<setting label="30000" type="bool" id="fanart" default="true" />

Putting the slash there makes it work again. I'm quite sure this worked while the scraper was still a scraper so something seems to have happened when it was converted to addon.

/Daniel


- jmarshall - 2010-07-21

Please post a patch to the addons mailing list:

https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Cheers,
Jonathan


- Daniel Malmgren - 2010-07-23

jmarshall Wrote:Please post a patch to the addons mailing list:

https://lists.sourceforge.net/lists/listinfo/xbmc-addons

Cheers,
Jonathan

Thanks mate. Done.

/Daniel

edit: Now fixed. Thanks Olympia!