1
0
mirror of https://github.com/nextapps-de/flexsearch.git synced 2025-10-01 07:36:40 +02:00

Fix options being detected as fields

- Fix clean job to work on UNIX based systems
 - Fix build.js to work on UNIX based systems
This commit is contained in:
davfsa
2021-06-11 16:55:47 +02:00
parent 328c136ec8
commit 36e06d33e0
8 changed files with 9 additions and 8 deletions

View File

@@ -758,7 +758,7 @@ R.prototype.search = function(a, b, c, d) {
if (c.constructor === Array) {
k = c, c = null;
} else {
k = (g = c.pluck) || c.index || c.field || c;
k = (g = c.pluck) || c.index || c.field;
m = c.tag;
h = this.store && c.enrich;
n = "and" === c.bool;