Commit 28b8fd48 authored by Pierre Ynard's avatar Pierre Ynard

soundcloud.lua: support HTTPS

The website uses HTTPS by default so that was confusing
parent 4de1f284
...@@ -22,7 +22,7 @@ ...@@ -22,7 +22,7 @@
-- Probe function. -- Probe function.
function probe() function probe()
return vlc.access == "http" return ( vlc.access == "http" or vlc.access == "https" )
and string.match( vlc.path, "soundcloud%.com/.+/.+" ) and string.match( vlc.path, "soundcloud%.com/.+/.+" )
end end
......
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