summaryrefslogtreecommitdiffstats
path: root/commands/server.go
diff options
context:
space:
mode:
Diffstat (limited to 'commands/server.go')
-rw-r--r--commands/server.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/commands/server.go b/commands/server.go
index 7b7164eea..58d1a60fb 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
}