[vlc-commits] soundcloud.lua: support HTTPS
Pierre Ynard
git at videolan.org
Thu Jul 31 20:48:39 CEST 2014
vlc/vlc-2.2 | branch: master | Pierre Ynard <linkfanel at yahoo.fr> | Mon Jul 28 06:01:41 2014 +0200| [e51cf4d92f124acb12d673773b9928c62c419807] | committer: 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: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.2.git/?a=commit;h=e51cf4d92f124acb12d673773b9928c62c419807
---
share/lua/playlist/soundcloud.lua | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/share/lua/playlist/soundcloud.lua b/share/lua/playlist/soundcloud.lua
index bd9f5d6..6c1db69 100644
--- a/share/lua/playlist/soundcloud.lua
+++ b/share/lua/playlist/soundcloud.lua
@@ -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
More information about the vlc-commits
mailing list