diff options
| author | Fuwn <[email protected]> | 2023-11-22 23:59:39 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-11-22 23:59:39 -0800 |
| commit | 0bc71a759ebf50399b69f852db51fc19e3377984 (patch) | |
| tree | ff195aafc9bb4e893b19e8fdb150807e0f563c62 /src/lib/AniList | |
| parent | fix(settings): no default livechart (diff) | |
| download | due.moe-0bc71a759ebf50399b69f852db51fc19e3377984.tar.xz due.moe-0bc71a759ebf50399b69f852db51fc19e3377984.zip | |
fix(anime): remove time desync on outdated caches
Diffstat (limited to 'src/lib/AniList')
| -rw-r--r-- | src/lib/AniList/media.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/AniList/media.ts b/src/lib/AniList/media.ts index 1ae33f7c..2898b3df 100644 --- a/src/lib/AniList/media.ts +++ b/src/lib/AniList/media.ts @@ -36,7 +36,7 @@ export interface Media { }; nextAiringEpisode?: { episode: number; - timeUntilAiring?: number; + airingAt?: number; }; mediaListEntry?: { progress: number; @@ -94,7 +94,7 @@ const collectionQueryTemplate = (type: Type, userId: number, includeCompleted: b media { id status type episodes chapters format duration title { romaji english native } - nextAiringEpisode { episode timeUntilAiring } + nextAiringEpisode { episode airingAt } mediaListEntry { progress progressVolumes status repeat score(format: POINT_100) startedAt { year } completedAt { year } |