forked from platypush/platypush
Regex fix
This commit is contained in:
parent
12fd582d70
commit
f2bd309478
1 changed files with 1 additions and 1 deletions
|
@ -273,7 +273,7 @@ class MusicMpdPlugin(MusicPlugin):
|
|||
if resource.startswith('spotify:'):
|
||||
resource = resource.split('?')[0]
|
||||
|
||||
m = re.match('spotify:user:[^:]+:playlist:(.+?)', resource)
|
||||
m = re.match('spotify:user:[^:]+:playlist:(.*)', resource)
|
||||
if m:
|
||||
# Old Spotify URI format, convert it to new
|
||||
resource = 'spotify:playlist:' + m.group(1)
|
||||
|
|
Loading…
Reference in a new issue