Fix issue with meta file not being saved synchronously on creation.

This commit is contained in:
Ottermandias 2024-10-12 15:13:06 +02:00
parent db2ce1328f
commit 97b310ca3f

View file

@ -37,7 +37,7 @@ public class ModDataEditor(SaveService saveService, CommunicatorService communic
mod.Description = description ?? mod.Description;
mod.Version = version ?? mod.Version;
mod.Website = website ?? mod.Website;
saveService.ImmediateSave(new ModMeta(mod));
saveService.ImmediateSaveSync(new ModMeta(mod));
}
public ModDataChangeType LoadLocalData(Mod mod)