aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar jesopo2018-07-02 14:34:46 +0100
committerGravatar jesopo2018-07-02 14:34:46 +0100
commitdc0babe59994b6ef56abc09220b0a838e1454092 (patch)
tree4b2865931eaeb81d820de653ac5ac300068541d8
parentAdd logic in soundcloud.py to accept urls and search back through log for urls (diff)
signature
Accept http and https soundcloud urls
-rw-r--r--modules/soundcloud.py2
1 files changed, 1 insertions, 1 deletions
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"