mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[48] fix using 0 in plex_search
This commit is contained in:
parent
3080e2e719
commit
d915e0e641
2 changed files with 2 additions and 2 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.17.0-develop47
|
||||
1.17.0-develop48
|
||||
|
|
|
@ -1791,7 +1791,7 @@ class CollectionBuilder:
|
|||
results += f"{conjunction if len(results) > 0 else ''}push=1&{inside_filter}pop=1&"
|
||||
else:
|
||||
validation = self.validate_attribute(attr, modifier, final_attr, _data, validate, plex_search=True)
|
||||
if validation is not False and not validation:
|
||||
if validation is not False and validation != 0 and not validation:
|
||||
continue
|
||||
elif attr in plex.date_attributes and modifier in ["", ".not"]:
|
||||
last_text = "is not in the last" if modifier == ".not" else "is in the last"
|
||||
|
|
Loading…
Reference in a new issue