Compare commits

..

5 Commits

Author SHA1 Message Date
28bb39474f docs: update README
add folder info about middleware
2025-12-18 23:47:28 -05:00
7cf0c4c1c7 feat: use luxon for TTL 2025-12-18 23:47:28 -05:00
45f6f678b6 chore: add debug logging to help understand why episode updates won't run 2025-12-18 23:47:27 -05:00
1958110679 chore: remove no longer needed isRetrying boolean 2025-12-18 23:43:11 -05:00
3294d3c6a2 fix: 'upcoming' titles failing to fetch
wasn't returning "Page" from the anilist json response
2025-12-18 23:43:10 -05:00

View File

@@ -135,7 +135,8 @@ export class AnilistDurableObject extends DurableObject {
nextSeason, nextSeason,
nextYear, nextYear,
limit, limit,
}); page,
}).then((data) => data?.Page);
}, },
DateTime.now().plus({ days: 1 }), DateTime.now().plus({ days: 1 }),
); );
@@ -154,8 +155,7 @@ export class AnilistDurableObject extends DurableObject {
nextSeason, nextSeason,
nextYear, nextYear,
limit, limit,
page, });
}).then((data) => data?.Page);
}, },
DateTime.now().plus({ days: 1 }), DateTime.now().plus({ days: 1 }),
); );