fix: start server when listening on socket
This fixes a regression introduced in daa7ad053c where the http server was not started when listening on a unix socket instead of a http interface.
Resolves https://github.com/go-vikunja/vikunja/issues/396
This commit is contained in:
parent
20cd15fb98
commit
b85befb86a
|
|
@ -140,7 +140,6 @@ var webCmd = &cobra.Command{
|
|||
if err := setupUnixSocket(e); err != nil {
|
||||
e.Logger.Fatal(err)
|
||||
}
|
||||
return
|
||||
}
|
||||
|
||||
err := e.Start(config.ServiceInterface.GetString())
|
||||
|
|
|
|||
Loading…
Reference in New Issue