From: Bjørn Erik Pedersen Date: Thu, 19 Jul 2018 20:39:24 +0000 (+0200) Subject: hugolib: Avoid nilpointer in absoluteSourceRef X-Git-Tag: v0.45~11 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=65e610e1617647a7dc6bb9f7794cfad068cb3615;p=brevno-suite%2Fhugo hugolib: Avoid nilpointer in absoluteSourceRef --- diff --git a/hugolib/page.go b/hugolib/page.go index 838791ab..f45257c9 100644 --- a/hugolib/page.go +++ b/hugolib/page.go @@ -1883,9 +1883,11 @@ func (p *Page) FullFilePath() string { // For pages that do not (sections witout content page etc.), it returns the // virtual path, consistent with where you would add a source file. func (p *Page) absoluteSourceRef() string { - sourcePath := p.Source.Path() - if sourcePath != "" { - return "/" + filepath.ToSlash(sourcePath) + if p.Source.File != nil { + sourcePath := p.Source.Path() + if sourcePath != "" { + return "/" + filepath.ToSlash(sourcePath) + } } if len(p.sections) > 0 {