commit 6f3716dc22e373097a38d053f5415feca602f330
parent 5a52cd5f920bb3d067ab1682adece9f813c67ba1
Author: Bjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Date: Mon, 22 Oct 2018 19:50:27 +0200
commands: Avoid panic in error handler on config errors
Diffstat:
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git 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
}