Commit e51cf4d9 authored by Pierre Ynard's avatar Pierre Ynard Committed by Jean-Baptiste Kempf

soundcloud.lua: support HTTPS

The website uses HTTPS by default so that was confusing

(cherry picked from commit 28b8fd48c6f86b56b09f8eb600d7e26fe0bf714f)
Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent a9b80028
...@@ -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