diff options
| author | Fuwn <[email protected]> | 2023-09-19 17:10:59 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-09-19 17:10:59 -0700 |
| commit | 1067a2844ed42d836b5f0b271e1978c49889eb97 (patch) | |
| tree | 5a1b0291b333ab21fee68aa198fdf247ec8b439c /src/lib/List/Due/MangaList.svelte | |
| parent | refactor(manga): style (diff) | |
| download | due.moe-1067a2844ed42d836b5f0b271e1978c49889eb97.tar.xz due.moe-1067a2844ed42d836b5f0b271e1978c49889eb97.zip | |
fix(due): move timer back
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 { |