This commit is contained in:
Jan-Lukas Else 2021-03-10 18:49:32 +01:00
parent 41083cfb31
commit d9afd0cb49
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ func startServer() (err error) {
} else if appConfig.Server.SecurityHeaders {
err = http.ListenAndServe(localAddress, finalHandler)
} else {
err = http.ListenAndServe(localAddress, d)
err = http.ListenAndServe(localAddress, finalHandler)
}
return
}