mirror of
https://github.com/pkkid/python-plexapi
synced 2024-11-22 19:53:17 +00:00
fixup after ratingkey was changed to int.
This commit is contained in:
parent
313fef4de8
commit
114cb1dc89
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ class Playlist(PlexPartialObject, Playable):
|
|||
raise BadRequest('Can not mix media types when building a playlist: %s and %s' % (self.playlistType, item.listType))
|
||||
ratingKeys.append(item.ratingKey)
|
||||
uuid = items[0].section().uuid
|
||||
ratingKeys = ','.join(ratingKeys)
|
||||
ratingKeys = ','.join(str(ratingKeys))
|
||||
path = '%s/items%s' % (self.key, utils.joinArgs({
|
||||
'uri': 'library://%s/directory//library/metadata/%s' % (uuid, ratingKeys),
|
||||
}))
|
||||
|
|
Loading…
Reference in a new issue