Fixed Spotify URL parsing and version bump to 2.0.16

This commit is contained in:
RemixDev
2021-02-11 12:31:30 +01:00
parent 0814a17600
commit 67fcb7d37f
3 changed files with 3 additions and 2 deletions

View File

@ -69,6 +69,7 @@ def getIDFromLink(link, type):
link = link[:-1]
if link.startswith("http") and 'open.spotify.com/' in link:
if '&' in link: link = link[:link.find('&')]
if type == "spotifyplaylist":
return link[link.find("/playlist/") + 10:]
if type == "spotifytrack":