mirror of
https://github.com/Tautulli/Tautulli.git
synced 2025-07-13 08:42:59 -07:00
String synced playlist rating key
This commit is contained in:
parent
676a797f21
commit
dda9d76843
1 changed files with 1 additions and 1 deletions
|
@ -577,7 +577,7 @@ class PlexTV(object):
|
||||||
plex = Plex(token=tokens['server_token'])
|
plex = Plex(token=tokens['server_token'])
|
||||||
for playlist in plex.plex.playlists():
|
for playlist in plex.plex.playlists():
|
||||||
if location_uri.endswith(playlist.guid):
|
if location_uri.endswith(playlist.guid):
|
||||||
rating_key = playlist.ratingKey
|
rating_key = str(playlist.ratingKey) # String for backwards consistency
|
||||||
|
|
||||||
# Filter by rating_key
|
# Filter by rating_key
|
||||||
if rating_key_filter and rating_key not in rating_key_filter:
|
if rating_key_filter and rating_key not in rating_key_filter:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue