mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-21 20:46:30 -05:00
Return unmodified content if panic in LiveReloadInject
This commit is contained in:
parent
4d708f096d
commit
62752cfee9
1 changed files with 2 additions and 1 deletions
|
@ -6,10 +6,11 @@ import (
|
||||||
"github.com/spf13/viper"
|
"github.com/spf13/viper"
|
||||||
)
|
)
|
||||||
|
|
||||||
func LiveReloadInject(content []byte) []byte {
|
func LiveReloadInject(content []byte) (injected []byte) {
|
||||||
defer func() {
|
defer func() {
|
||||||
if r := recover(); r != nil {
|
if r := recover(); r != nil {
|
||||||
jww.ERROR.Println("Recovered in LiveReloadInject", r)
|
jww.ERROR.Println("Recovered in LiveReloadInject", r)
|
||||||
|
injected = content
|
||||||
}
|
}
|
||||||
}()
|
}()
|
||||||
match := []byte("</body>")
|
match := []byte("</body>")
|
||||||
|
|
Loading…
Reference in a new issue