Don't tack empty args onto the query

This commit is contained in:
Chaz Larson 2023-10-02 18:15:24 -05:00
parent b52c9fea86
commit 306f354b6b

View file

@ -570,7 +570,11 @@ class Plex(Library):
@retry(stop_max_attempt_number=6, wait_fixed=10000, retry_on_exception=util.retry_if_not_plex)
def fetchItems(self, uri_args):
return self.Plex.fetchItems(f"/library/sections/{self.Plex.key}/all{uri_args}")
query_path = f"/library/sections/{self.Plex.key}/all{uri_args}"
if uri_args is None:
query_path = f"/library/sections/{self.Plex.key}/all"
return self.Plex.fetchItems(query_path)
def get_all(self, builder_level=None, load=False):
if load and builder_level in [None, "show", "artist", "movie"]: