From b1ba63c09b83a66ac48f2b47fa89d7bef6aae183 Mon Sep 17 00:00:00 2001 From: Miwory Date: Fri, 24 Apr 2026 19:09:02 +0300 Subject: [PATCH] =?UTF-8?q?=D0=A4=D0=B8=D0=BA=D1=81=20=D0=BF=D0=B0=D0=B3?= =?UTF-8?q?=D0=B8=D0=BD=D0=B0=D1=86=D0=B8=D0=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- pyproject.toml | 2 +- src/oxidetwitch/api.py | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 4b3b52a..05653f5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "oxidetwitch" -version = "1.2.4" +version = "1.2.5" description = "Client for Twitch API" readme = "README.md" authors = [{ name = "Miwory", email = "miwory.uwu@gmail.com" }] diff --git a/src/oxidetwitch/api.py b/src/oxidetwitch/api.py index 5a5875c..91d17d1 100644 --- a/src/oxidetwitch/api.py +++ b/src/oxidetwitch/api.py @@ -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 -- 2.47.2