Фикс пагинации
Some checks failed
Verify Dev Build / publish (push) Has been cancelled

This commit is contained in:
2026-04-24 19:09:02 +03:00
parent cddbe4c08f
commit b1ba63c09b
2 changed files with 4 additions and 1 deletions

View File

@ -93,6 +93,9 @@ class TwitchAPIClient(OxideHTTP):
if isinstance(result.pagination, s.Pagination):
after = result.pagination.cursor
else:
after = None
if after is None:
break