Don't tack empty args onto the query

pull/1635/head
Chaz Larson 1 year ago
parent b52c9fea86
commit 306f354b6b

@ -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"]:

Loading…
Cancel
Save