diff options
| author | Fuwn <[email protected]> | 2023-12-27 01:30:33 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-12-27 01:30:33 -0800 |
| commit | 51e7be68a561e531dda240ae11ef8284cfca3282 (patch) | |
| tree | 3d9ccf55eab63d1a2641cf1458a80c2f4b2a8681 /src/lib | |
| parent | style(package.json): prettier (diff) | |
| download | due.moe-51e7be68a561e531dda240ae11ef8284cfca3282.tar.xz due.moe-51e7be68a561e531dda240ae11ef8284cfca3282.zip | |
fix(manga): disable higher guessing informed
Diffstat (limited to 'src/lib')
| -rw-r--r-- | src/lib/Media/Manga/chapters.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/Media/Manga/chapters.ts b/src/lib/Media/Manga/chapters.ts index 36942ce4..8d072559 100644 --- a/src/lib/Media/Manga/chapters.ts +++ b/src/lib/Media/Manga/chapters.ts @@ -134,7 +134,7 @@ export const chapterCount = async ( let lastChapter = lastChapterDataJson['data'][0]['attributes']['chapter']; let completedVolumes = null; - if ((manga.mediaListEntry || { progress: 0 }).progress > lastChapter) { + if ((manga.mediaListEntry || { progress: 0 }).progress > lastChapter && !disableGuessing) { const anilistData = await recentMediaActivities( identity, manga, |