From 460db753125028236ed00aa4b162e47225244fa2 Mon Sep 17 00:00:00 2001 From: meisnate12 Date: Fri, 24 Feb 2023 11:05:52 -0500 Subject: [PATCH] [93] #1325 Allow tmdb_vote_count --- VERSION | 2 +- modules/builder.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/VERSION b/VERSION index 23f7d402..51e152de 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.18.3-develop92 +1.18.3-develop93 diff --git a/modules/builder.py b/modules/builder.py index eecaa29a..64a4258a 100644 --- a/modules/builder.py +++ b/modules/builder.py @@ -131,7 +131,7 @@ all_filters = boolean_filters + special_filters + \ [f"{f}{m}" for f in number_filters for m in number_modifiers] date_attributes = plex.date_attributes + ["first_episode_aired", "last_episode_aired", "last_episode_aired_or_never"] year_attributes = plex.year_attributes + ["tmdb_year"] -number_attributes = plex.number_attributes + ["channels", "height", "width"] +number_attributes = plex.number_attributes + ["channels", "height", "width", "tmdb_vote_count"] tag_attributes = plex.tag_attributes string_attributes = plex.string_attributes + string_filters float_attributes = plex.float_attributes + ["aspect"]