Commit c482dc55 authored by Pierre Ynard's avatar Pierre Ynard

lua http: fix slash stripping

parent a31c7333
......@@ -38,7 +38,7 @@ end
---[[]] vlc.msg.err("requests/status.xml got:","input: "..tostring(input),"command: "..tostring(command),"id: "..tostring(id),"val: "..tostring(val))
local function stripslashes(s)
return string.gsub(s,"\\(%.)","%1")
return string.gsub(s,"\\(.)","%1")
end
local status = vlc.playlist.status()
......
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