diff options
| author | Fuwn <[email protected]> | 2023-12-17 04:41:15 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-17 04:41:15 -0800 |
| commit | 89610f221e7cbdd326489e528f05226ae5375e47 (patch) | |
| tree | fa40769499b0272b8a53e0c3d57d88abcb23da8a /src/lib/List | |
| parent | refactor(manga): move database (diff) | |
| download | due.moe-89610f221e7cbdd326489e528f05226ae5375e47.tar.xz due.moe-89610f221e7cbdd326489e528f05226ae5375e47.zip | |
refactor(manga): move cache
Diffstat (limited to 'src/lib/List')
| -rw-r--r-- | src/lib/List/Manga/MangaListTemplate.svelte | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/List/Manga/MangaListTemplate.svelte b/src/lib/List/Manga/MangaListTemplate.svelte index 192943fd..822c7343 100644 --- a/src/lib/List/Manga/MangaListTemplate.svelte +++ b/src/lib/List/Manga/MangaListTemplate.svelte @@ -2,7 +2,8 @@ import { mediaListCollection, Type, type Media } from '$lib/AniList/media'; import type { UserIdentity, AniListAuthorisation } from '$lib/AniList/identity'; import { onDestroy, onMount } from 'svelte'; - import { chapterCount, pruneAllManga } from '$lib/Media/manga'; + import { chapterCount } from '$lib/Media/manga'; + import { pruneAllManga } from '$lib/Media/Manga/cache'; import manga from '../../../stores/manga'; import { chapterDatabase } from '$lib/Media/Manga/database'; import settings from '../../../stores/settings'; |