mirror of
https://github.com/tubearchivist/jellyfin.git
synced 2025-04-05 10:00:13 +00:00
Update in series.py the _get_existing_seasons method
By changing the searched tag to `Name`, I stopped getting timeouts generated by `_wait_for_season`.
This commit is contained in:
parent
3c88c19eb1
commit
60e1ffb8f4
@ -225,7 +225,7 @@ class Show:
|
|||||||
path: str = f"Shows/{series_id}/Seasons"
|
path: str = f"Shows/{series_id}/Seasons"
|
||||||
all_seasons: dict = Jellyfin().get(path)
|
all_seasons: dict = Jellyfin().get(path)
|
||||||
|
|
||||||
return [str(i.get("IndexNumber")) for i in all_seasons["Items"]]
|
return [str(i.get("Name")) for i in all_seasons["Items"]]
|
||||||
|
|
||||||
def delete_folders(self, folders: list[str]) -> None:
|
def delete_folders(self, folders: list[str]) -> None:
|
||||||
"""delete temporary folders created"""
|
"""delete temporary folders created"""
|
||||||
|
Loading…
Reference in New Issue
Block a user