Properly handle nested tag executions when the nested tag has no body

This commit is contained in:
Elara 2024-02-17 19:36:40 -08:00
parent 89f75f1709
commit 4501ef63d6
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ func (t *Template) getBlock(nodes []ast.Node, offset, startLine int, name string
// If we encounter another tag with the same name,
// increment tagAmount so that we know that the next
// end tag isn't the end of this tag.
if node.Name.Value == name {
if node.Name.Value == name && node.HasBody {
tagAmount++
}
out = append(out, node)