mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[50] fix mdb_commonsense0
This commit is contained in:
parent
2809ebf14d
commit
e693d9b0fb
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.17.3-develop49
|
||||
1.17.3-develop50
|
||||
|
|
|
@ -340,7 +340,7 @@ class Operations:
|
|||
elif mdb_item and self.library.mass_content_rating_update == "mdb_commonsense":
|
||||
new_rating = mdb_item.commonsense if mdb_item.commonsense else None
|
||||
elif mdb_item and self.library.mass_content_rating_update == "mdb_commonsense0":
|
||||
new_rating = f"{mdb_item.commonsense:02}" if mdb_item.commonsense else None
|
||||
new_rating = str(mdb_item.commonsense).rjust(2, "0") if mdb_item.commonsense else None
|
||||
elif mal_item and self.library.mass_content_rating_update == "mal":
|
||||
new_rating = mal_item.rating
|
||||
else:
|
||||
|
|
Loading…
Reference in a new issue