aboutsummaryrefslogtreecommitdiff
path: root/src/lib
diff options
context:
space:
mode:
authorFuwn <[email protected]>2023-12-27 01:30:33 -0800
committerFuwn <[email protected]>2023-12-27 01:30:33 -0800
commit51e7be68a561e531dda240ae11ef8284cfca3282 (patch)
tree3d9ccf55eab63d1a2641cf1458a80c2f4b2a8681 /src/lib
parentstyle(package.json): prettier (diff)
downloaddue.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.ts2
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,