mirror of
https://github.com/gohugoio/hugo.git
synced 2025-04-21 16:06:43 +00: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
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
||||||
result, err := p.searchDoc(page, indicesStr...)
|
result, err := p.searchDoc(doc, indicesStr...)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue