diff options
| author | Fuwn <[email protected]> | 2023-09-14 14:39:22 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-09-14 14:39:22 -0700 |
| commit | 00095848c8c82b4db9a52f0e85ac29b0f991e99b (patch) | |
| tree | dc9fe8ce3f4234077f0bb1b266b632a7450af5e4 /src/lib/List/Due | |
| parent | refactor(manga): rename from mangadex (diff) | |
| download | due.moe-00095848c8c82b4db9a52f0e85ac29b0f991e99b.tar.xz due.moe-00095848c8c82b4db9a52f0e85ac29b0f991e99b.zip | |
refactor: move media to folder
Diffstat (limited to 'src/lib/List/Due')
| -rw-r--r-- | src/lib/List/Due/AnimeList.svelte | 2 | ||||
| -rw-r--r-- | src/lib/List/Due/MangaList.svelte | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/List/Due/AnimeList.svelte b/src/lib/List/Due/AnimeList.svelte index b6d6f9ef..e6e36b39 100644 --- a/src/lib/List/Due/AnimeList.svelte +++ b/src/lib/List/Due/AnimeList.svelte @@ -7,7 +7,7 @@ import anime from '../../../stores/anime'; import settings from '../../../stores/settings'; import lastPruneTimes from '../../../stores/lastPruneTimes'; - import { airingTime, cleanCache, totalEpisodes, updateMedia } from '$lib/anime'; + import { airingTime, cleanCache, totalEpisodes, updateMedia } from '$lib/Media/anime'; export let user: AniListAuthorisation; export let identity: UserIdentity; diff --git a/src/lib/List/Due/MangaList.svelte b/src/lib/List/Due/MangaList.svelte index bc152e27..ad553639 100644 --- a/src/lib/List/Due/MangaList.svelte +++ b/src/lib/List/Due/MangaList.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/manga'; + import { chapterCount } from '$lib/Media/manga'; import manga from '../../../stores/manga'; import { chapterDatabase } from '$lib/chapterDatabase'; import settings from '../../../stores/settings'; |