From dc0babe59994b6ef56abc09220b0a838e1454092 Mon Sep 17 00:00:00 2001 From: jesopo Date: Mon, 2 Jul 2018 14:34:46 +0100 Subject: [PATCH] Accept http and https soundcloud urls --- modules/soundcloud.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/soundcloud.py b/modules/soundcloud.py index aa35b019..97125255 100644 --- a/modules/soundcloud.py +++ b/modules/soundcloud.py @@ -5,7 +5,7 @@ import Utils URL_SOUNDCLOUD_TRACK = "http://api.soundcloud.com/tracks" URL_SOUNDCLOUD_RESOLVE = "http://api.soundcloud.com/resolve" -REGEX_SOUNDCLOUD = "https://soundcloud.com/([^/]+)/([^/]+)" +REGEX_SOUNDCLOUD = "https?://soundcloud.com/([^/]+)/([^/]+)" class Module(object): _name = "SoundCloud"