[vlc-devel] [PATCH] soundcloud.lua: Improve URL probe function
Marvin Scholz
epirat07 at gmail.com
Tue Oct 25 13:40:32 CEST 2016
Improve the URL probe function to not match URLs like
http://example.org/foo/soundcloud.com/example/example as
those should not be handled by this script.
Ref. #17488
---
Corrected accidental double-checking in the previous patch
share/lua/playlist/soundcloud.lua | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/share/lua/playlist/soundcloud.lua b/share/lua/playlist/soundcloud.lua
index 8dfbe7e..fbf8faf2 100644
--- a/share/lua/playlist/soundcloud.lua
+++ b/share/lua/playlist/soundcloud.lua
@@ -23,8 +23,10 @@
-- Probe function.
function probe()
+ local path = vlc.path
+ path = path:gsub("^www%.", "")
return ( vlc.access == "http" or vlc.access == "https" )
- and string.match( vlc.path, "soundcloud%.com/.+/.+" )
+ and string.match( path, "^soundcloud%.com/.+/.+" )
end
function fix_quotes( value )
--
2.8.4 (Apple Git-73)
More information about the vlc-devel
mailing list