Merge pull request #42 from agg23/LibraryUUIDFix

Fixed library tracks not playing
This commit is contained in:
Valentijn 2018-09-19 14:34:09 +02:00 committed by GitHub
commit 6088849f6a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -173,7 +173,7 @@ class Track(object):
if client.gp.is_subscribed:
track_id = self.store_id
else:
track_id = self.library_id
track_id = str(self.library_id)
client.gp.get_stream_url_async(track_id, callback=on_get_url)
@synchronized