summaryrefslogtreecommitdiffstats
path: root/hugolib/site_sections.go
diff options
context:
space:
mode:
authorCameron Moore <moorereason@gmail.com>2018-10-02 21:46:32 -0500
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>2018-10-03 09:33:42 +0300
commit498d6299581bead0f582431b8133d8b5f8760618 (patch)
treecd7cdda367d5b27e9ad50b861743c9a580b36397 /hugolib/site_sections.go
parent10ac2ec4466090957e1f6897906ddeb1e0b13673 (diff)
hugolib: Allow nil to be unwrapped as *Page
Previously, calls to *Page.Eq(nil) would always return false because the unwrapPage func didn't support the nil case. Add support for unwrapping nil to a *Page. Fixes #5043
Diffstat (limited to 'hugolib/site_sections.go')
-rw-r--r--hugolib/site_sections.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/hugolib/site_sections.go b/hugolib/site_sections.go
index d27b31614..abcac1d5c 100644
--- a/hugolib/site_sections.go
+++ b/hugolib/site_sections.go
@@ -152,6 +152,8 @@ func unwrapPage(in interface{}) (*Page, error) {
return v.Page, nil
case *PageWithoutContent:
return v.Page, nil
+ case nil:
+ return nil, nil
default:
return nil, fmt.Errorf("%T not supported", in)
}