From 5d249d4c10dddae7ae54e4d5d29564e1c8492b7c Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Sun, 21 Feb 2021 04:05:50 +0100 Subject: [PATCH] Fix migration of compendiums --- src/module/migrations/002.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module/migrations/002.ts b/src/module/migrations/002.ts index 7901f76..1b1806a 100644 --- a/src/module/migrations/002.ts +++ b/src/module/migrations/002.ts @@ -107,7 +107,6 @@ async function migrateCompendium(compendium: Compendium) { const wasLocked = compendium.locked; await compendium.configure({ locked: false }); - await compendium.migrate({}); const content = await compendium.getContent(); for (const entity of content) { @@ -133,5 +132,6 @@ async function migrateCompendium(compendium: Compendium) { } } + await compendium.migrate({}); await compendium.configure({ locked: wasLocked }); }