mirror of
https://github.com/gohugoio/hugo.git
synced 2024-12-23 18:51:02 +00:00
commands: Avoid panic in error handler on config errors
This commit is contained in:
parent
5a52cd5f92
commit
6f3716dc22
1 changed files with 5 additions and 1 deletions
|
@ -334,7 +334,11 @@ func (f *fileServer) createEndpoint(i int) (*http.ServeMux, string, string, erro
|
|||
if err != nil {
|
||||
f.c.logger.ERROR.Println(err)
|
||||
}
|
||||
fmt.Fprint(w, injectLiveReloadScript(&b, f.c.Cfg.GetInt("liveReloadPort")))
|
||||
port = 1313
|
||||
if !f.c.paused {
|
||||
port = f.c.Cfg.GetInt("liveReloadPort")
|
||||
}
|
||||
fmt.Fprint(w, injectLiveReloadScript(&b, port))
|
||||
|
||||
return
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue