mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Add revocer in LiveReloadInject
The panic cannot be reproduced, but add this as protection. Fixes #911
This commit is contained in:
parent
d2e022f2a7
commit
4d708f096d
1 changed files with 6 additions and 1 deletions
|
@ -2,11 +2,16 @@ package transform
|
|||
|
||||
import (
|
||||
"bytes"
|
||||
|
||||
jww "github.com/spf13/jwalterweatherman"
|
||||
"github.com/spf13/viper"
|
||||
)
|
||||
|
||||
func LiveReloadInject(content []byte) []byte {
|
||||
defer func() {
|
||||
if r := recover(); r != nil {
|
||||
jww.ERROR.Println("Recovered in LiveReloadInject", r)
|
||||
}
|
||||
}()
|
||||
match := []byte("</body>")
|
||||
port := viper.GetString("port")
|
||||
replace := []byte(`<script>document.write('<script src="http://'
|
||||
|
|
Loading…
Reference in a new issue