diff options
Diffstat (limited to 'src/lib/Data/AniList/media.ts')
| -rw-r--r-- | src/lib/Data/AniList/media.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/lib/Data/AniList/media.ts b/src/lib/Data/AniList/media.ts index 18f2de07..703a55be 100644 --- a/src/lib/Data/AniList/media.ts +++ b/src/lib/Data/AniList/media.ts @@ -80,6 +80,7 @@ export interface Media { }; coverImage: { extraLarge: string; + medium: string; }; tags: { name: string; @@ -151,7 +152,7 @@ const collectionQueryTemplate = (type: Type, userId: number, options: Collection } startDate { year } endDate { year } - coverImage { extraLarge } + coverImage { extraLarge medium } ${ options.includeRelations ? ` @@ -163,7 +164,7 @@ const collectionQueryTemplate = (type: Type, userId: number, options: Collection title { english romaji } mediaListEntry { status progress } startDate { year } - coverImage { extraLarge } + coverImage { extraLarge medium } } } } |