fix: fixed the language thing and handling of project settings

This commit is contained in:
2026-02-17 20:11:28 +01:00
parent 80bc164917
commit 406568c78c
4 changed files with 52 additions and 0 deletions

View File

@@ -810,6 +810,9 @@ export function registerIpcHandlers(): void {
safeHandle('meta:getProjectMetadata', async () => {
const engine = getMetaEngine();
if (!engine.isInitialized()) {
await engine.syncOnStartup();
}
return engine.getProjectMetadata();
});