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 @@
-- Probe function.
function probe()
return vlc.access == "http"
return ( vlc.access == "http" or vlc.access == "https" )
and string.match( vlc.path, "soundcloud%.com/.+/.+" )
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