diff options
| author | Fuwn <[email protected]> | 2023-12-17 04:42:55 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-17 04:42:55 -0800 |
| commit | 9ad5f28246db93f6ef72e25d8b477e4f11865ddb (patch) | |
| tree | 46b7505e35070d3e33f2844f53131b2da3db8dd4 /src/lib/List | |
| parent | refactor(manga): move cache (diff) | |
| download | due.moe-9ad5f28246db93f6ef72e25d8b477e4f11865ddb.tar.xz due.moe-9ad5f28246db93f6ef72e25d8b477e4f11865ddb.zip | |
refactor(manga): move chapters and volumes
Diffstat (limited to 'src/lib/List')
| -rw-r--r-- | src/lib/List/Manga/CleanMangaList.svelte | 2 | ||||
| -rw-r--r-- | src/lib/List/Manga/MangaListTemplate.svelte | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/List/Manga/CleanMangaList.svelte b/src/lib/List/Manga/CleanMangaList.svelte index 40082809..b0e7947e 100644 --- a/src/lib/List/Manga/CleanMangaList.svelte +++ b/src/lib/List/Manga/CleanMangaList.svelte @@ -1,7 +1,7 @@ <script lang="ts"> import type { Media } from '$lib/AniList/media'; import Error from '$lib/Error.svelte'; - import { volumeCount } from '$lib/Media/manga'; + import { volumeCount } from '$lib/Media/Manga/volumes'; import { outboundLink } from '$lib/Media/media'; import settings from '../../../stores/settings'; import ListTitle from '../ListTitle.svelte'; diff --git a/src/lib/List/Manga/MangaListTemplate.svelte b/src/lib/List/Manga/MangaListTemplate.svelte index 822c7343..5fdb2bf5 100644 --- a/src/lib/List/Manga/MangaListTemplate.svelte +++ b/src/lib/List/Manga/MangaListTemplate.svelte @@ -2,7 +2,7 @@ import { mediaListCollection, Type, type Media } from '$lib/AniList/media'; import type { UserIdentity, AniListAuthorisation } from '$lib/AniList/identity'; import { onDestroy, onMount } from 'svelte'; - import { chapterCount } from '$lib/Media/manga'; + import { chapterCount } from '$lib/Media/Manga/chapters'; import { pruneAllManga } from '$lib/Media/Manga/cache'; import manga from '../../../stores/manga'; import { chapterDatabase } from '$lib/Media/Manga/database'; |