diff options
| author | Fuwn <[email protected]> | 2023-09-06 00:15:57 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-09-06 00:15:57 -0700 |
| commit | 6cc6424d978efcf6c1765d388181e49e75255c02 (patch) | |
| tree | 8c9df07e0435de1335af61699cff898da05a45e9 /src/lib/AniList | |
| parent | feat: show completed anime section (diff) | |
| download | due.moe-6cc6424d978efcf6c1765d388181e49e75255c02.tar.xz due.moe-6cc6424d978efcf6c1765d388181e49e75255c02.zip | |
feat(list): filter paused media
Diffstat (limited to 'src/lib/AniList')
| -rw-r--r-- | src/lib/AniList/media.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/AniList/media.ts b/src/lib/AniList/media.ts index 7cc42827..f6f6a68e 100644 --- a/src/lib/AniList/media.ts +++ b/src/lib/AniList/media.ts @@ -27,6 +27,7 @@ export interface Media { }; mediaListEntry?: { progress: number; + status: string; }; startDate: { year: number; @@ -114,7 +115,7 @@ export const mediaListCollection = async ( format title { romaji english native } nextAiringEpisode { episode timeUntilAiring } - mediaListEntry { progress } + mediaListEntry { progress status } startDate { year } } } } } |