Skip to content

Commit

Permalink
chore: fix bad optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
nytamin committed Aug 14, 2023
1 parent dfe41c1 commit 5fb7097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/resolver/ExpressionHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export class ExpressionHandler {
public validateExpression(operatorList: Array<string>, expr0: Expression, breadcrumbs?: string): true {
if (!breadcrumbs) breadcrumbs = 'ROOT'

if (isObject(expr0)) {
if (isObject(expr0) && !isArray(expr0)) {
const expr: ExpressionObj = expr0

if (expr.l === undefined)
Expand Down

0 comments on commit 5fb7097

Please sign in to comment.