Reverted the revert

This commit is contained in:
Fabio Manganiello 2019-02-28 18:57:22 +01:00
parent f2bd309478
commit 771da4528b
1 changed files with 2 additions and 2 deletions

View File

@ -273,10 +273,10 @@ class MusicMpdPlugin(MusicPlugin):
if resource.startswith('spotify:'):
resource = resource.split('?')[0]
m = re.match('spotify:user:[^:]+:playlist:(.*)', resource)
m = re.match('spotify:playlist:(.*)', resource)
if m:
# Old Spotify URI format, convert it to new
resource = 'spotify:playlist:' + m.group(1)
resource = 'spotify:user:spotify:playlist:' + m.group(1)
return resource
@action