mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2025-02-16 13:58:25 +00:00
fix trakt_trending
This commit is contained in:
parent
480704cf39
commit
a94806b2d4
1 changed files with 1 additions and 1 deletions
|
@ -157,7 +157,7 @@ class Trakt:
|
|||
current_type = item["type"]
|
||||
else:
|
||||
continue
|
||||
id_type = "tmdb" if item["type"] == "movie" else "tvdb"
|
||||
id_type = "tmdb" if current_type == "movie" else "tvdb"
|
||||
if data["ids"][id_type]:
|
||||
final_id = data["ids"][id_type]
|
||||
if current_type == "episode":
|
||||
|
|
Loading…
Add table
Reference in a new issue