hugolib: Avoid nilpointer in absoluteSourceRef

This commit is contained in:
Bjørn Erik Pedersen 2018-07-19 22:39:24 +02:00
parent b56d9a1294
commit 65e610e161
No known key found for this signature in database
GPG key ID: 330E6E2BD4859D8F

View file

@ -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 {