Fix TypeError
This commit is contained in:
parent
cf3cc2c3a9
commit
0afe265524
1 changed files with 2 additions and 2 deletions
|
@ -386,8 +386,8 @@ def GetPlexPlaylist(itemid, librarySectionUUID, mediatype='movie'):
|
|||
url = "{server}/playQueues"
|
||||
args = {
|
||||
'type': mediatype,
|
||||
'uri': 'library://%s/item/%2Flibrary%2Fmetadata%2F%s'
|
||||
% (librarySectionUUID, itemid),
|
||||
'uri': ('library://' + librarySectionUUID +
|
||||
'/item/%2Flibrary%2Fmetadata%2F' + itemid),
|
||||
'includeChapters': '1',
|
||||
'extrasPrefixCount': trailerNumber,
|
||||
'shuffle': '0',
|
||||
|
|
Loading…
Reference in a new issue