mirror of
https://github.com/MarginaliaSearch/MarginaliaSearch.git
synced 2025-02-23 13:09:00 +00:00
Merge pull request 'master' (#55) from master into release
Reviewed-on: https://git.marginalia.nu/marginalia/marginalia.nu/pulls/55
This commit is contained in:
commit
85cf636592
@ -112,8 +112,10 @@ public class EdgeSearchOperator {
|
||||
}
|
||||
|
||||
private List<BrowseResult> getDomainResults(Context ctx, EdgeSearchSpecification specs) {
|
||||
var requests = specs.subqueries.stream().filter(sq -> sq.searchTermsExclude.isEmpty() && sq.searchTermsInclude.size() == 1)
|
||||
var requests = specs.subqueries.stream()
|
||||
.filter(sq -> sq.searchTermsExclude.isEmpty() && sq.searchTermsInclude.size() == 1)
|
||||
.flatMap(sq -> sq.searchTermsInclude.stream())
|
||||
.distinct()
|
||||
.map(keyword -> new EdgeDomainSearchSpecification(specs.buckets.get(0), IndexBlock.TitleKeywords, keyword, 1_000_000, 10, 20))
|
||||
.toArray(EdgeDomainSearchSpecification[]::new);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user