diff --git a/src/features/migration/MigrationManager.ts b/src/features/migration/MigrationManager.ts index edaee85a..7dc68f8c 100644 --- a/src/features/migration/MigrationManager.ts +++ b/src/features/migration/MigrationManager.ts @@ -950,7 +950,7 @@ export class MigrationManager { latestChapterNumber > selectedMatchLatestChapterNumber; const hasNewerChapter = hasNewerChapterVsEntry && hasNewerChapterVsSelectedMatch; - const isOutdated = latestChapterNumber <= entryLatestChapterNumber; + const isOutdated = latestChapterNumber < entryLatestChapterNumber; const hasSameLatestChapterAsSelectedMatch = !!draftMatchEntry && selectedMatchLatestChapterNumber === latestChapterNumber;