Fix panic in 404.Parent
authorBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 21 Feb 2020 07:06:38 +0000 (08:06 +0100)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Fri, 21 Feb 2020 07:14:08 +0000 (08:14 +0100)
Fixes #6924

hugolib/404_test.go
hugolib/page__tree.go

index a4dc667aa351f90df7d37ee94696095927be4db5..6dea9295cdb5b1b1ed1e90a7a8f9c67cd0fec1ab 100644 (file)
@@ -21,13 +21,16 @@ func Test404(t *testing.T) {
        t.Parallel()
 
        b := newTestSitesBuilder(t)
-       b.WithSimpleConfigFile().WithTemplatesAdded("404.html", "<html><body>Not Found!</body></html>")
+       b.WithSimpleConfigFile().WithTemplatesAdded("404.html", "<html><body>Not Found! Parent: {{ .Parent.Kind }}</body></html>")
        b.Build(BuildCfg{})
 
        // Note: We currently have only 1 404 page. One might think that we should have
        // multiple, to follow the Custom Output scheme, but I don't see how that would work
        // right now.
-       b.AssertFileContent("public/404.html", "Not Found")
+       b.AssertFileContent("public/404.html", `
+Not Found
+Parent: home
+`)
 
 }
 
index 08fda22895c898fed785d7d9f2f5e9a303d6eadd..2c35289227b0d5ae32ff0d0944f7e6a302132906 100644 (file)
@@ -121,11 +121,13 @@ func (pt pageTree) Parent() page.Page {
                return nil
        }
 
-       if pt.p.Kind() == page.KindTaxonomyTerm {
+       tree := p.getTreeRef()
+
+       if pt.p.Kind() == page.KindTaxonomyTerm || tree == nil {
                return pt.p.s.home
        }
 
-       _, b := p.getTreeRef().getSection()
+       _, b := tree.getSection()
        if b == nil {
                return nil
        }