vlc | branch: master | Pierre Ynard <linkfa...@yahoo.fr> | Sun Jan 27 00:22:43 
2019 +0100| [809f0de4694e26a9ea96cfb6376d58292728ed32] | committer: Pierre Ynard

dailymotion.lua: strip website tag appended to video title

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=809f0de4694e26a9ea96cfb6376d58292728ed32
---

 share/lua/playlist/dailymotion.lua | 1 +
 1 file changed, 1 insertion(+)

diff --git a/share/lua/playlist/dailymotion.lua 
b/share/lua/playlist/dailymotion.lua
index f117b0d5de..59be95fc03 100644
--- a/share/lua/playlist/dailymotion.lua
+++ b/share/lua/playlist/dailymotion.lua
@@ -36,6 +36,7 @@ function parse()
                if string.match( line, "<meta property=\"og:title\"" ) then
                        _,_,name = string.find( line, "content=\"(.-)\"" )
                        name = vlc.strings.resolve_xml_special_chars( name )
+                       name = string.gsub( name, " %- Vidéo dailymotion$", "" )
                end
                if string.match( line, "<meta name=\"description\"" ) then
                        _,_,description = string.find( line, "content=\"(.-)\"" 
)

_______________________________________________
vlc-commits mailing list
vlc-commits@videolan.org
https://mailman.videolan.org/listinfo/vlc-commits

Reply via email to