From: Vas Sudanagunta Date: Thu, 19 Jul 2018 18:55:16 +0000 (-0400) Subject: Fix typo-logic bug in GetPage X-Git-Tag: v0.45~12 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b56d9a1294e692d096bff442e0b1fec61a8c2b0f;p=brevno-suite%2Fhugo Fix typo-logic bug in GetPage --- diff --git a/hugolib/page_collections.go b/hugolib/page_collections.go index 3d7c8628..41c88cd6 100644 --- a/hugolib/page_collections.go +++ b/hugolib/page_collections.go @@ -221,7 +221,7 @@ func (c *PageCollections) getPageNew(context *Page, ref string) (*Page, error) { // Last try. ref = strings.TrimPrefix(ref, "/") - context, err := c.getFromCache(ref) + p, err := c.getFromCache(ref) if err != nil { if context != nil { @@ -230,7 +230,7 @@ func (c *PageCollections) getPageNew(context *Page, ref string) (*Page, error) { return nil, fmt.Errorf("failed to resolve page: %s", err) } - return context, nil + return p, nil } func (*PageCollections) findPagesByKindIn(kind string, inPages Pages) Pages {