diff options
Diffstat (limited to 'src/lib/List/Due/MangaList.svelte')
| -rw-r--r-- | src/lib/List/Due/MangaList.svelte | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/List/Due/MangaList.svelte b/src/lib/List/Due/MangaList.svelte index ed641132..4b207351 100644 --- a/src/lib/List/Due/MangaList.svelte +++ b/src/lib/List/Due/MangaList.svelte @@ -23,6 +23,7 @@ }, $settings.cacheMinutes * 1000 * 60); onMount(async () => { + startTime = performance.now(); mangaLists = mediaListCollection(user, identity, Type.Manga, $manga, $lastPruneTimes.manga); }); @@ -33,8 +34,6 @@ return []; } - startTime = performance.now(); - if ($lastPruneTimes.chapters === 1) { lastPruneTimes.setKey('chapters', new Date().getTime()); } else { |