aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Media
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/Media')
-rw-r--r--src/lib/Media/Anime/cache.ts (renamed from src/lib/Media/anime.ts)8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/Media/anime.ts b/src/lib/Media/Anime/cache.ts
index 475080aa..c423a419 100644
--- a/src/lib/Media/anime.ts
+++ b/src/lib/Media/Anime/cache.ts
@@ -1,8 +1,8 @@
import { get } from 'svelte/store';
-import anime from '../../stores/anime';
-import { mediaListCollection, Type } from '../AniList/media';
-import lastPruneTimes from '../../stores/lastPruneTimes';
-import type { AniListAuthorisation, UserIdentity } from '../AniList/identity';
+import anime from '../../../stores/anime';
+import { mediaListCollection, Type } from '../../AniList/media';
+import lastPruneTimes from '../../../stores/lastPruneTimes';
+import type { AniListAuthorisation, UserIdentity } from '../../AniList/identity';
export const cleanCache = (user: AniListAuthorisation, identity: UserIdentity) =>
mediaListCollection(user, identity, Type.Anime, get(anime), get(lastPruneTimes).anime, true);