1
0
mirror of https://github.com/nextapps-de/flexsearch.git synced 2025-09-02 18:33:17 +02:00

fix bug: When the threshold of search options is smaller than the threshold of create options, there is a exception thrown.

This commit is contained in:
ma.gaoyu
2019-02-28 14:58:23 +08:00
parent 376da38349
commit 8a069404e4

View File

@@ -1883,7 +1883,7 @@
for(let z = 0; z < (resolution - threshold); z++){
if((map_value = map[z][value])){
if((map_value = (map[z] && map[z][value]))){
map_check[count++] = map_value;
map_found = true;