corretto bug in ricerca testuale
This commit is contained in:
parent
449b30ea64
commit
698bb099d9
|
@ -1420,17 +1420,17 @@ function resetFrasi(){
|
||||||
noContext=false
|
noContext=false
|
||||||
inf = contesto[0].reduce((a, e, i) => {
|
inf = contesto[0].reduce((a, e, i) => {
|
||||||
if (e === 1)
|
if (e === 1)
|
||||||
a.push(i);
|
a.push(i+1);
|
||||||
return a;
|
return a;
|
||||||
}, []);
|
}, []);
|
||||||
pur = contesto[1].reduce((a, e, i) => {
|
pur = contesto[1].reduce((a, e, i) => {
|
||||||
if (e === 1)
|
if (e === 1)
|
||||||
a.push(i);
|
a.push(i+1);
|
||||||
return a;
|
return a;
|
||||||
}, []);
|
}, []);
|
||||||
par = contesto[2].reduce((a, e, i) => {
|
par = contesto[2].reduce((a, e, i) => {
|
||||||
if (e === 1)
|
if (e === 1)
|
||||||
a.push(i);
|
a.push(i+1);
|
||||||
return a;
|
return a;
|
||||||
}, []);
|
}, []);
|
||||||
}
|
}
|
||||||
|
@ -1478,7 +1478,8 @@ function resetFrasi(){
|
||||||
}
|
}
|
||||||
if (fnd){
|
if (fnd){
|
||||||
//console.log('ipfound: '+forme[ip].split('_')[2]+' - '+forme[(ip+testo.length-1)].split('_')[2])
|
//console.log('ipfound: '+forme[ip].split('_')[2]+' - '+forme[(ip+testo.length-1)].split('_')[2])
|
||||||
if(cont.length && !(parseInt(forme[ip].split('_')[1]) in cont)){
|
if(cont.length && !cont.includes(parseInt(forme[ip].split('_')[1]))){
|
||||||
|
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
resultsInCantica.push(cantica)
|
resultsInCantica.push(cantica)
|
||||||
|
|
Loading…
Reference in New Issue