Compare commits

..

5 Commits

Author SHA1 Message Date
e5d9d62be2 docs: update README
add folder info about middleware
2025-12-18 23:52:44 -05:00
8d63d4fa5e feat: use luxon for TTL 2025-12-18 23:52:44 -05:00
07bece1f6c chore: add debug logging to help understand why episode updates won't run 2025-12-18 23:52:43 -05:00
2ed38e92bc chore: remove no longer needed isRetrying boolean 2025-12-18 23:52:43 -05:00
26ca15d4aa fix: 'upcoming' titles failing to fetch
wasn't returning "Page" from the anilist json response
2025-12-18 23:52:43 -05:00

View File

@@ -135,8 +135,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 }),
); );
@@ -155,7 +154,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 }),
); );