fix for #186 plex_search will Fail if theres no valid search

This commit is contained in:
meisnate12 2021-04-07 22:15:52 -04:00
parent d6336815b5
commit 96ea7baffe

View file

@ -717,7 +717,10 @@ class CollectionBuilder:
raise Failed(f"Collection Error: modifier: {modifier} not supported with the {search} plex search attribute")
else:
raise Failed(f"Collection Error: {search_final} plex search attribute not supported")
self.methods.append((method_name, [searches]))
if len(searches) > 0:
self.methods.append((method_name, [searches]))
else:
raise Failed("Collection Error: no valid plex search attributes")
elif method_name == "tmdb_discover":
new_dictionary = {"limit": 100}
for discover_name, discover_data in method_data.items():