mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-26 06:20:23 +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:
|
if found_rating is None:
|
||||||
logger.info(f"No {display} Found")
|
logger.info(f"No {display} Found")
|
||||||
elif str(current) != str(found_rating):
|
else:
|
||||||
item.editField(item_attr, found_rating)
|
if f"{current:.1f}" != f"{found_rating:.1f}":
|
||||||
return f"\n{display} | {found_rating}"
|
item.editField(item_attr, found_rating)
|
||||||
|
return f"\n{display} | {found_rating}"
|
||||||
return ""
|
return ""
|
||||||
|
|
||||||
if self.library.mass_audience_rating_update:
|
if self.library.mass_audience_rating_update:
|
||||||
|
|
Loading…
Reference in a new issue