Merge pull request #1462 from NyaaPantsu/akuma06-patch-2
Fix broken sub category search
Cette révision appartient à :
révision
a0ddcf0ef7
1 fichiers modifiés avec 3 ajouts et 1 suppressions
|
@ -342,7 +342,9 @@ func (p *TorrentParam) FindES(c *gin.Context, client *elastic.Client) ([]models.
|
|||
func (p *TorrentParam) toDBQuery(c *gin.Context) *Query {
|
||||
query := &Query{}
|
||||
|
||||
query.Append(p.Category.ToDBQuery())
|
||||
sql, cats := p.Category.ToDBQuery()
|
||||
query.Append(sql, cats...)
|
||||
|
||||
if len(p.Languages) > 0 {
|
||||
query.Append("language "+searchOperator, "%"+langsToDBQuery(p.Languages)+"%")
|
||||
}
|
||||
|
|
Référencer dans un nouveau ticket