Return unmodified content if panic in LiveReloadInject

This commit is contained in:
bep 2015-02-18 22:16:40 +01:00
parent 4d708f096d
commit 62752cfee9

View file

@ -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>")