diff options
| -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, |