From: Vazrupe (HyeonGyu Lee) Date: Mon, 19 Aug 2019 14:26:53 +0000 (+0900) Subject: hugolib: Change to output non-panic error message if missing shortcode template X-Git-Tag: v0.58.0~29 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=fd3d90ced85baaf6941be45b2fe29c25ff755c18;p=brevno-suite%2Fhugo hugolib: Change to output non-panic error message if missing shortcode template A panic occurred when the `nested` variable was nil. Changed to check if the `nested` variable is nil. Fixes #6075 --- diff --git a/hugolib/shortcode.go b/hugolib/shortcode.go index 895d0dcf..8323962c 100644 --- a/hugolib/shortcode.go +++ b/hugolib/shortcode.go @@ -473,9 +473,10 @@ Loop: pt.Backup() nested, err := s.extractShortcode(nestedOrdinal, nextLevel, pt) nestedOrdinal++ - if nested.name != "" { + if nested != nil && nested.name != "" { s.nameSet[nested.name] = true } + if err == nil { sc.inner = append(sc.inner, nested) } else {