From 51e7be68a561e531dda240ae11ef8284cfca3282 Mon Sep 17 00:00:00 2001 From: Fuwn Date: Wed, 27 Dec 2023 01:30:33 -0800 Subject: fix(manga): disable higher guessing informed --- src/lib/Media/Manga/chapters.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib') 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, -- cgit v1.2.3