[vlc-commits] Koreus: fix lua escaping
Jean-Baptiste Kempf
git at videolan.org
Fri Dec 12 13:08:11 CET 2014
vlc/vlc-2.2 | branch: master | Jean-Baptiste Kempf <jb at videolan.org> | Tue Dec 9 18:49:10 2014 +0100| [52a4d235084070d57461235764ec1daafcea0fb7] | committer: Jean-Baptiste Kempf
Koreus: fix lua escaping
(cherry picked from commit 79db2468b244a6ca0d08cf61072b331f01fb93f7)
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=52a4d235084070d57461235764ec1daafcea0fb7
---
share/lua/playlist/koreus.lua | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/share/lua/playlist/koreus.lua b/share/lua/playlist/koreus.lua
index a7422c6..2385bdf 100644
--- a/share/lua/playlist/koreus.lua
+++ b/share/lua/playlist/koreus.lua
@@ -46,7 +46,7 @@ function parse()
end
end
if string.match( line, "<span id=\"spoil\" style=\"display:none\">" ) then
- _,_,desc_spoil = string.find( line, "<span id=\"spoil\" style=\"display:none\">(.-)<\/span>" )
+ _,_,desc_spoil = string.find( line, "<span id=\"spoil\" style=\"display:none\">(.-)</span>" )
desc_spoil = vlc.strings.resolve_xml_special_chars( desc_spoil )
description = description .. "\n\r" .. desc_spoil
end
More information about the vlc-commits
mailing list