From 8cf6db2ba59ca1109a44320c790428b126a2384b Mon Sep 17 00:00:00 2001 From: Johannes Loher Date: Thu, 13 May 2021 20:13:32 +0200 Subject: [PATCH] Migrate data model of compendiums before migrating the content --- src/module/migrations/004.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/module/migrations/004.ts b/src/module/migrations/004.ts index 540f039..5f09a60 100644 --- a/src/module/migrations/004.ts +++ b/src/module/migrations/004.ts @@ -115,6 +115,7 @@ async function migrateCompendium(compendium: Compendium) { if (!["Actor", "Item", "Scene"].includes(entityName)) return; const wasLocked = compendium.locked; await compendium.configure({ locked: false }); + await compendium.migrate({}); const content = await compendium.getContent(); @@ -141,6 +142,5 @@ async function migrateCompendium(compendium: Compendium) { } } - await compendium.migrate({}); await compendium.configure({ locked: wasLocked }); }