Skip to content

Commit

Permalink
fix: properties must be case-INsensitive
Browse files Browse the repository at this point in the history
  • Loading branch information
yusshu committed Nov 11, 2021
1 parent 0a2410c commit 93c9664
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ private Expression parse(ParseContext context, Expression left) throws ParseExce
context.getCursor()
);
}
return new AccessExpression(left, readWord(context));
return new AccessExpression(left, readWord(context).toLowerCase());
}
//#endregion

Expand Down

0 comments on commit 93c9664

Please sign in to comment.