mirror of
https://github.com/xivdev/Penumbra.git
synced 2025-12-12 18:27:24 +01:00
Fix issue with meta file not being saved synchronously on creation.
This commit is contained in:
parent
db2ce1328f
commit
97b310ca3f
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue