Commit 2b6a84c2 authored by Pierre Ynard's avatar Pierre Ynard

lua http: fix slash stripping

(cherry picked from commit c482dc5576eff200f77c4e77af40eb41ecaacacd)
Signed-off-by: default avatarPierre Ynard <linkfanel@yahoo.fr>
parent 2ef8d92b
......@@ -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