From: Bjørn Erik Pedersen Date: Tue, 5 Jun 2018 07:32:08 +0000 (+0300) Subject: hugolib: Reset Page's main output on server rebuilds X-Git-Tag: v0.42~15 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=dc4226a8b27e03e31068fc945daab885d3819d04;p=brevno-suite%2Fhugo hugolib: Reset Page's main output on server rebuilds Not doing so prevents the paginators to be rebuilt on changes. Fixes #4819 --- diff --git a/hugolib/site.go b/hugolib/site.go index 2f47ac23..273d6190 100644 --- a/hugolib/site.go +++ b/hugolib/site.go @@ -1604,6 +1604,7 @@ func (s *Site) resetBuildState() { p.subSections = Pages{} p.parent = nil p.scratch = newScratch() + p.mainPageOutput = nil } }