mirror of
https://github.com/tubearchivist/jellyfin.git
synced 2025-04-04 17:50:13 +00:00
Use while-true
This commit is contained in:
parent
c40801dd8b
commit
0c54d97e65
@ -74,7 +74,7 @@ class Library:
|
||||
path: str = f"Items/{collection_id}/Refresh?Recursive=true&ImageRefreshMode=Default&MetadataRefreshMode=Default" # noqa: E501
|
||||
Jellyfin().post(path, False)
|
||||
|
||||
for _ in range(24):
|
||||
while True:
|
||||
response = Jellyfin().get("Library/VirtualFolders")
|
||||
for folder in response:
|
||||
if not folder["ItemId"] == collection_id:
|
||||
@ -211,7 +211,7 @@ class Show:
|
||||
path: str = f"Items/{jf_id}/Refresh?Recursive=true&ImageRefreshMode=Default&MetadataRefreshMode=Default" # noqa: E501
|
||||
print(f"[setup] {path=}")
|
||||
Jellyfin().post(path, False)
|
||||
for _ in range(100):
|
||||
while True:
|
||||
all_existing: set[str] = set(self._get_existing_seasons())
|
||||
|
||||
print(f"[setup] seasons: {all_existing} {expected_season=}")
|
||||
|
Loading…
Reference in New Issue
Block a user