mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
Don't tack empty args onto the query
This commit is contained in:
parent
b52c9fea86
commit
306f354b6b
1 changed files with 5 additions and 1 deletions
|
@ -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…
Reference in a new issue