From d915e0e641bd90f9cef6b4ba04f793672776cd93 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Tue, 21 Jun 2022 10:07:44 -0400 Subject: [PATCH] [48] fix using 0 in plex_search --- VERSION | 2 +- modules/builder.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 37998887..dcb2439d 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.17.0-develop47 +1.17.0-develop48 diff --git a/modules/builder.py b/modules/builder.py index 6fba176e..d5eb1d54 100644 --- a/modules/builder.py +++ b/modules/builder.py @@ -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"