fix(installer): expand ~ in UiDbPath
All checks were successful
Release / release (push) Successful in 29s

This commit is contained in:
mika kuns
2026-04-17 14:33:30 +02:00
parent 09e8b1f10b
commit 2a8cd97d02

View File

@@ -29,7 +29,7 @@ public sealed class WriteConfigStep : IInstallStep
var uiCfg = new InstallerAppSettings var uiCfg = new InstallerAppSettings
{ {
DbPath = ctx.UiDbPath, DbPath = Paths.Expand(ctx.UiDbPath),
SignalRUrl = ctx.SignalRUrl, SignalRUrl = ctx.SignalRUrl,
}; };
uiCfg.Save(); uiCfg.Save();