diff options
-rw-r--r-- | gomuks.go | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -49,11 +49,12 @@ func NewGomuks(uiProvider ifc.UIProvider) *Gomuks { gmx.config = config.NewConfig(configDir, cacheDir) gmx.ui = uiProvider(gmx) gmx.matrix = matrix.NewContainer(gmx) + + gmx.config.Load() gmx.ui.Init() debug.OnRecover = gmx.ui.Finish - gmx.config.Load() if len(gmx.config.UserID) > 0 { _ = gmx.config.LoadSession(gmx.config.UserID) } |