From b9aa4f06af8d68edbfe8d079f6ed2ca6b5eabf82 Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Fri, 22 May 2026 11:33:33 +0200 Subject: [PATCH] Fix migration outdated match detection --- src/features/migration/MigrationManager.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;