mirror of
https://github.com/meisnate12/Plex-Meta-Manager
synced 2024-11-10 06:54:21 +00:00
[3] update requirements
This commit is contained in:
parent
a1b366d6c4
commit
99eeb4543d
3 changed files with 5 additions and 9 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
1.19.1-develop2
|
||||
1.19.1-develop3
|
||||
|
|
|
@ -570,11 +570,7 @@ 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):
|
||||
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)
|
||||
return self.Plex.fetchItems(f"/library/sections/{self.Plex.key}/all{'' if uri_args is None else uri_args}")
|
||||
|
||||
def get_all(self, builder_level=None, load=False):
|
||||
if load and builder_level in [None, "show", "artist", "movie"]:
|
||||
|
|
|
@ -4,11 +4,11 @@ lxml==4.9.3
|
|||
num2words==0.5.12
|
||||
pathvalidate==3.2.0
|
||||
pillow==10.0.1
|
||||
PlexAPI==4.15.2
|
||||
PlexAPI==4.15.3
|
||||
psutil==5.9.5
|
||||
python-dotenv==1.0.0
|
||||
requests==2.31.0
|
||||
retrying==1.3.4
|
||||
ruamel.yaml==0.17.32
|
||||
schedule==1.2.0
|
||||
ruamel.yaml==0.17.33
|
||||
schedule==1.2.1
|
||||
tmdbapis==1.2.0
|
Loading…
Reference in a new issue