1
0
mirror of https://github.com/nextapps-de/flexsearch.git synced 2025-09-03 10:53:41 +02:00

Merge pull request #58 from Drunkman/master

fix bug
This commit is contained in:
Thomas Wilkerling
2019-02-28 10:01:50 +01:00
committed by GitHub

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;