fix: set-app-url (#1107)

This commit is contained in:
Jonas Plum
2024-11-04 21:50:18 +01:00
committed by GitHub
parent 70ba16a6bd
commit 42797509f7

View File

@@ -107,12 +107,7 @@ func setAppURL(app core.App) *cobra.Command {
return
}
settings, err := app.Settings().Clone()
if err != nil {
app.Logger().Error(err.Error())
return
}
settings := app.Settings()
settings.Meta.AppUrl = args[0]