diff options
Diffstat (limited to 'src/lib/List')
| -rw-r--r-- | src/lib/List/Due/AnimeList.svelte | 2 | ||||
| -rw-r--r-- | src/lib/List/Due/MangaList.svelte | 2 | ||||
| -rw-r--r-- | src/lib/List/UpcomingAnimeList.svelte | 2 | ||||
| -rw-r--r-- | src/lib/List/WatchingAnimeList.svelte | 2 |
4 files changed, 4 insertions, 4 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'; diff --git a/src/lib/List/UpcomingAnimeList.svelte b/src/lib/List/UpcomingAnimeList.svelte index bb52b573..41ffcee3 100644 --- a/src/lib/List/UpcomingAnimeList.svelte +++ b/src/lib/List/UpcomingAnimeList.svelte @@ -7,7 +7,7 @@ import anime from '../../stores/anime'; import lastPruneTimes from '../../stores/lastPruneTimes'; import settings from '../../stores/settings'; - import { airingTime, cleanCache } from '$lib/anime'; + import { airingTime, cleanCache } from '$lib/Media/anime'; export let user: AniListAuthorisation; export let identity: UserIdentity; diff --git a/src/lib/List/WatchingAnimeList.svelte b/src/lib/List/WatchingAnimeList.svelte index 2c298488..f86ede7d 100644 --- a/src/lib/List/WatchingAnimeList.svelte +++ b/src/lib/List/WatchingAnimeList.svelte @@ -7,7 +7,7 @@ import anime from '../../stores/anime'; import lastPruneTimes from '../../stores/lastPruneTimes'; import settings from '../../stores/settings'; - import { cleanCache, totalEpisodes, updateMedia } from '$lib/anime'; + import { cleanCache, totalEpisodes, updateMedia } from '$lib/Media/anime'; export let user: AniListAuthorisation; export let identity: UserIdentity; |