new(basic.gblib): new TOLIST and FIND now works with hour intervals.

This commit is contained in:
Rodrigo Rodriguez 2021-08-05 12:34:33 -03:00
parent 452eb608a4
commit 6eb1f4d2aa

View file

@ -411,12 +411,12 @@ export class SystemKeywords {
} }
break; break;
case 'not in': case 'not in':
if (filter.value.indexOf(result)) { if (filter.value.indexOf(result) === -1) {
filterAcceptCount++; filterAcceptCount++;
} }
break; break;
case 'in': case 'in':
if (!filter.value.indexOf(result)) { if (filter.value.indexOf(result) !== -1) {
filterAcceptCount++; filterAcceptCount++;
} }
break; break;