mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
hugolib: Use the interface value when doing Related search
Currently it makes no practical difference, but this is more a protection if we in the future creates index from the content related fields. That will not work from a shortcode. See #5071
This commit is contained in:
parent
0dd06bdac0
commit
a6f199f7a6
1 changed files with 1 additions and 1 deletions
|
@ -73,7 +73,7 @@ func (p Pages) RelatedIndices(doc related.Document, indices ...interface{}) (Pag
|
|||
return nil, err
|
||||
}
|
||||
|
||||
result, err := p.searchDoc(page, indicesStr...)
|
||||
result, err := p.searchDoc(doc, indicesStr...)
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue