mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
Fix variable name
This commit is contained in:
parent
d2df74eb13
commit
a1a8455ffc
1 changed files with 1 additions and 1 deletions
|
@ -257,7 +257,7 @@ class Operations:
|
|||
elif mdb_item and attribute == "mdb":
|
||||
found_rating = mdb_item.score / 10 if mdb_item.score else None
|
||||
elif mdb_item and attribute == "mdb_average":
|
||||
found_rating = mdb_item.average_score_rating / 10 if mdb_item.average_rating else None
|
||||
found_rating = mdb_item.average_score_rating / 10 if mdb_item.average_score_rating else None
|
||||
elif mdb_item and attribute == "mdb_imdb":
|
||||
found_rating = mdb_item.imdb_rating if mdb_item.imdb_rating else None
|
||||
elif mdb_item and attribute == "mdb_metacritic":
|
||||
|
|
Loading…
Reference in a new issue