mirror of
https://github.com/thomiceli/opengist.git
synced 2024-12-23 04:52:40 +00:00
Fix search unlisted gists (#319)
This commit is contained in:
parent
f881e1c13c
commit
0950c9ce38
1 changed files with 9 additions and 11 deletions
|
@ -98,7 +98,6 @@ func SearchGists(queryStr string, queryMetadata SearchGistMetadata, gistsIds []u
|
||||||
indexerQuery = contentQuery
|
indexerQuery = contentQuery
|
||||||
}
|
}
|
||||||
|
|
||||||
if len(gistsIds) > 0 {
|
|
||||||
repoQueries := make([]query.Query, 0, len(gistsIds))
|
repoQueries := make([]query.Query, 0, len(gistsIds))
|
||||||
|
|
||||||
truee := true
|
truee := true
|
||||||
|
@ -110,7 +109,6 @@ func SearchGists(queryStr string, queryMetadata SearchGistMetadata, gistsIds []u
|
||||||
}
|
}
|
||||||
|
|
||||||
indexerQuery = bleve.NewConjunctionQuery(bleve.NewDisjunctionQuery(repoQueries...), indexerQuery)
|
indexerQuery = bleve.NewConjunctionQuery(bleve.NewDisjunctionQuery(repoQueries...), indexerQuery)
|
||||||
}
|
|
||||||
|
|
||||||
addQuery := func(field, value string) {
|
addQuery := func(field, value string) {
|
||||||
if value != "" && value != "." {
|
if value != "" && value != "." {
|
||||||
|
|
Loading…
Reference in a new issue