fix(basic.gblib): ALLOW ROLE return people.

This commit is contained in:
Rodrigo Rodriguez 2024-02-25 21:07:58 -03:00
parent 64cd2d6d11
commit 7332dba36e

View file

@ -1259,7 +1259,7 @@ export class SystemKeywords {
} }
break; break;
case 'not in': case 'not in':
if (v2.indexOf(v1) === -1) { if (v1.indexOf(v2) === -1) {
filterAcceptCount++; filterAcceptCount++;
} }
break; break;
@ -1269,7 +1269,7 @@ export class SystemKeywords {
filterAcceptCount++; filterAcceptCount++;
} }
} else { } else {
if (v2.indexOf(v1) > -1) { if (v1.indexOf(v2) > -1) {
filterAcceptCount++; filterAcceptCount++;
} }
} }