diff options
| author | Fuwn <[email protected]> | 2023-09-14 02:43:44 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-09-14 02:43:44 -0700 |
| commit | b220eddf448643fcf3c8f08adbb2b44103abf373 (patch) | |
| tree | 310a8868720859cf45e428d1048022cdda73008e /src/lib/List | |
| parent | feat(updates): change loading style (diff) | |
| download | due.moe-b220eddf448643fcf3c8f08adbb2b44103abf373.tar.xz due.moe-b220eddf448643fcf3c8f08adbb2b44103abf373.zip | |
feat(manga): best guess estimation
Diffstat (limited to 'src/lib/List')
| -rw-r--r-- | src/lib/List/Due/MangaList.svelte | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/List/Due/MangaList.svelte b/src/lib/List/Due/MangaList.svelte index 836899fc..e13a4747 100644 --- a/src/lib/List/Due/MangaList.svelte +++ b/src/lib/List/Due/MangaList.svelte @@ -62,7 +62,7 @@ ); let finalMedia = releasingMedia; - const chapterPromises = finalMedia.map((m: Media) => chapterCount(m)); + const chapterPromises = finalMedia.map((m: Media) => chapterCount(identity, m)); const chapterCounts = await Promise.all(chapterPromises); finalMedia.forEach((m: Media, i) => { |