Fix GetTerms nil pointer
authorCarl Johnson <me@carlmjohnson.net>
Fri, 20 Mar 2020 13:35:41 +0000 (09:35 -0400)
committerGitHub <noreply@github.com>
Fri, 20 Mar 2020 13:35:41 +0000 (14:35 +0100)
Fixes #7061

hugolib/page.go
hugolib/taxonomy_test.go

index 16c320ecd4eaf65388e698529dc1a1cda070bde5..f71c4d9b84ba3acb6de0565da8349f41bed342db 100644 (file)
@@ -141,7 +141,7 @@ func (p *pageState) GetTerms(taxonomy string) page.Pages {
        if p.IsHome() {
                // TODO(bep) make this less magical, see taxonomyEntries.Insert.
                self = "/" + page.KindHome
-       } else {
+       } else if p.treeRef != nil {
                self = p.treeRef.key
        }
 
index f8dca6a1f384096022adad59a4a367936343c6ab..f37e37b89590654c0e6cc3c79be8aa593446d7eb 100644 (file)
@@ -625,7 +625,9 @@ Category Paginator {{ range $categories.Paginator.Pages }}{{ .RelPermalink }}|{{
 Cats Paginator {{ range $cats.Paginator.Pages }}{{ .RelPermalink }}|{{ end }}:END
 
 `)
-
+       b.WithTemplatesAdded("404.html", `
+404 Terms: {{ range .GetTerms "categories" }}{{.RelPermalink }}|{{ end }}:END
+       `)
        b.Build(BuildCfg{})
 
        cat := b.GetPage("categories")
@@ -647,7 +649,7 @@ Home Terms: /categories/dogs/|/categories/gorillas/|:END
 Cats Paginator /section/p1/|/section/|:END
 Category Paginator /categories/birds/|/categories/cats/|/categories/dogs/|/categories/funny/|/categories/gorillas/|:END
 `)
-
+       b.AssertFileContent("public/404.html", "\n404 Terms: :END\n\t")
        b.AssertFileContent("public/categories/funny/index.xml", `<link>http://example.com/section/p1/</link>`)
        b.AssertFileContent("public/categories/index.xml", `<link>http://example.com/categories/funny/</link>`)