From: Bjørn Erik Pedersen Date: Mon, 22 Oct 2018 17:50:27 +0000 (+0200) Subject: commands: Avoid panic in error handler on config errors X-Git-Tag: v0.50~48 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=6f3716dc22e373097a38d053f5415feca602f330;p=brevno-suite%2Fhugo commands: Avoid panic in error handler on config errors --- diff --git a/commands/server.go b/commands/server.go index 7b7164ee..58d1a60f 100644 --- a/commands/server.go +++ b/commands/server.go @@ -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 }