diff options
| author | 2018-07-02 14:34:46 +0100 | |
|---|---|---|
| committer | 2018-07-02 14:34:46 +0100 | |
| commit | dc0babe59994b6ef56abc09220b0a838e1454092 (patch) | |
| tree | 4b2865931eaeb81d820de653ac5ac300068541d8 /modules | |
| parent | Add logic in soundcloud.py to accept urls and search back through log for urls (diff) | |
| signature | ||
Accept http and https soundcloud urls
Diffstat (limited to 'modules')
| -rw-r--r-- | modules/soundcloud.py | 2 |
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" |
