fix append device

This commit is contained in:
happyleaves 2017-08-17 20:57:04 -04:00
parent 544614f4b1
commit ca3866dee6
1 changed files with 4 additions and 1 deletions

View File

@ -995,7 +995,10 @@ class Spotify(object):
- device_id - device id to append
'''
if device_id:
path += "&device_id=%s" % device_id
if '?' in path:
path += "&device_id=%s" % device_id
else:
path += "?device_id=%s" % device_id
return path
def _get_id(self, type, id):