Regex fix

This commit is contained in:
Fabio Manganiello 2019-02-28 18:30:52 +01:00
parent 12fd582d70
commit f2bd309478
1 changed files with 1 additions and 1 deletions

View File

@ -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)