Dailymotion: fix double encoding in video description

Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
This commit is contained in:
Fabio Ritrovato 2009-07-21 12:46:04 +02:00 committed by Jean-Baptiste Kempf
parent e804bf92be
commit 459af8fae9

View File

@ -85,7 +85,7 @@ function parse()
end
if string.match( line, "<meta name=\"description\"" )
then
description = vlc.strings.resolve_xml_special_chars( find( line, "name=\"description\" lang=\".-\" content=\"(.-)\"" ) )
description = vlc.strings.resolve_xml_special_chars( vlc.strings.resolve_xml_special_chars( find( line, "name=\"description\" lang=\".-\" content=\"(.-)\"" ) ) )
end
if path and name and description and arturl then break end
end