mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[78] fix wrong rating
This commit is contained in:
parent
35456115d3
commit
08b84c6ae8
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.15.1-develop77
|
||||
1.15.1-develop78
|
||||
|
|
|
@ -550,7 +550,7 @@ def library_operations(config, library):
|
|||
elif mdb_item and attribute == "mdb_trakt":
|
||||
return mdb_item.trakt_rating / 10 if mdb_item.trakt_rating else None
|
||||
elif mdb_item and attribute == "mdb_tomatoes":
|
||||
return mdb_item.tmdb_rating / 10 if mdb_item.tomatoes_rating else None
|
||||
return mdb_item.tomatoes_rating / 10 if mdb_item.tomatoes_rating else None
|
||||
elif mdb_item and attribute == "mdb_tomatoesaudience":
|
||||
return mdb_item.tomatoesaudience_rating / 10 if mdb_item.tomatoesaudience_rating else None
|
||||
elif mdb_item and attribute == "mdb_tmdb":
|
||||
|
|
Loading…
Reference in a new issue