2020-10-29, 02:13
looking at the source - as far as I can tell - there is no xml escaping being done.
So if a program had any special xml characters (eg. < or > or ") in it's information, then the XML would become invalid.
@d21spike just need to do
So if a program had any special xml characters (eg. < or > or ") in it's information, then the XML would become invalid.
@d21spike just need to do
python:from xml.sax.saxutils import escape
prg += ' <title lang="en">%s</title>\n' % escape(title)
(same for subtitle, description etc)