From ec42ac40266938ac799a4f7128691f9e50801934 Mon Sep 17 00:00:00 2001 From: Rushil Perera Date: Sat, 6 Dec 2025 09:11:32 -0500 Subject: [PATCH] fix: currentPage not incrementing when loading watched titles --- src/controllers/auth/anilist/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/auth/anilist/index.ts b/src/controllers/auth/anilist/index.ts index 77e686e..8c7ebe2 100644 --- a/src/controllers/auth/anilist/index.ts +++ b/src/controllers/auth/anilist/index.ts @@ -133,7 +133,7 @@ app.openapi(route, async (c) => { const { mediaList, pageInfo } = await stub .getTitles( user.name!, - currentPage, + currentPage++, ["CURRENT", "PLANNING", "PAUSED", "REPEATING"], aniListToken, )