Reduce source requests during bulk migration

During the search the destination entries are already freshly fetched. Thus, this is not necessary anymore during the actual migration
This commit is contained in:
schroda
2026-05-08 16:28:53 +02:00
parent 3ba5edefbd
commit 4c00d487fe
3 changed files with 103 additions and 49 deletions

View File

@@ -963,7 +963,8 @@ export class MigrationManager {
}
assertIsDefined(entry.selectedMatchMangaId);
await MangaMigration.migrate(mangaId, entry.selectedMatchMangaId, options);
await MangaMigration.migrateByIdWithQuery(mangaId, entry.selectedMatchMangaId, options);
});
});