mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-13 20:24:00 +02:00
Return unmodified content if panic in LiveReloadInject
This commit is contained in:
@@ -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>")
|
||||||
|
Reference in New Issue
Block a user