mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[3] update rating check
This commit is contained in:
parent
c17a88d8f2
commit
903288f464
2 changed files with 5 additions and 4 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.18.2-develop2
|
||||
1.18.2-develop3
|
||||
|
|
|
@ -290,9 +290,10 @@ class Operations:
|
|||
|
||||
if found_rating is None:
|
||||
logger.info(f"No {display} Found")
|
||||
elif str(current) != str(found_rating):
|
||||
item.editField(item_attr, found_rating)
|
||||
return f"\n{display} | {found_rating}"
|
||||
else:
|
||||
if f"{current:.1f}" != f"{found_rating:.1f}":
|
||||
item.editField(item_attr, found_rating)
|
||||
return f"\n{display} | {found_rating}"
|
||||
return ""
|
||||
|
||||
if self.library.mass_audience_rating_update:
|
||||
|
|
Loading…
Reference in a new issue