[78] fix wrong rating

This commit is contained in:
meisnate12 2022-02-22 11:15:37 -05:00
parent 35456115d3
commit 08b84c6ae8
2 changed files with 2 additions and 2 deletions

View file

@ -1 +1 @@
1.15.1-develop77
1.15.1-develop78

View file

@ -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":