aboutsummaryrefslogtreecommitdiff
path: root/src/lib/List/Due/AnimeList.svelte
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/List/Due/AnimeList.svelte')
-rw-r--r--src/lib/List/Due/AnimeList.svelte3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/List/Due/AnimeList.svelte b/src/lib/List/Due/AnimeList.svelte
index 0cfd5994..1409730f 100644
--- a/src/lib/List/Due/AnimeList.svelte
+++ b/src/lib/List/Due/AnimeList.svelte
@@ -6,7 +6,6 @@
import { onDestroy, onMount } from 'svelte';
import anime from '../../../stores/anime';
import animeLastPrune from '../../../stores/mangaLastPrune';
- import cacheMinutes from '../../../stores/cacheMinutes';
import settings from '../../../stores/settings';
export let user: AniListAuthorisation;
@@ -21,7 +20,7 @@
startTime = performance.now();
endTime = -1;
animeLists = mediaListCollection(user, identity, Type.Anime, $anime, $animeLastPrune, true);
- }, Number($cacheMinutes || 10) * 1000 * 60);
+ }, Number($settings.cacheMinutes || 10) * 1000 * 60);
onMount(async () => {
startTime = performance.now();