Commit 65ae4d03 authored by Ilkka Ollakka's avatar Ilkka Ollakka

replace & -> &, quick fix for status working with fileinfos with & in them.

parent 9915a75c
......@@ -122,7 +122,7 @@ local vout = input and vlc.object.find(input,'vout','child')
for k, v in pairs(info) do
print("<category name='"..k.."'>")
for k2, v2 in pairs(v) do
print("<info name='"..k2.."'>"..v2.."</info>")
print("<info name='"..k2.."'>"..v2.replace('&','&amp;').."</info>")
end
print("</category>")
end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment