mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-12 20:13:59 +02:00
Return unmodified content if panic in LiveReloadInject
This commit is contained in:
@@ -6,10 +6,11 @@ import (
|
||||
"github.com/spf13/viper"
|
||||
)
|
||||
|
||||
func LiveReloadInject(content []byte) []byte {
|
||||
func LiveReloadInject(content []byte) (injected []byte) {
|
||||
defer func() {
|
||||
if r := recover(); r != nil {
|
||||
jww.ERROR.Println("Recovered in LiveReloadInject", r)
|
||||
injected = content
|
||||
}
|
||||
}()
|
||||
match := []byte("</body>")
|
||||
|
Reference in New Issue
Block a user