Skip to content

Commit

Permalink
fix(expressions): allow unevaluated values in V2 evaluator (#1577)
Browse files Browse the repository at this point in the history
- Fix a regression in v2 to not prematurely flag an expression as failed
  • Loading branch information
jeyrschabu committed Aug 28, 2017
1 parent c6a553b commit 5406646
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ class ExpressionTransform {
)

result = source
} else if (result == null || result.toString().contains(parserContext.getExpressionPrefix())) {
} else if (result == null) {
summary.add(
escapedExpressionString,
ExpressionEvaluationSummary.Result.Level.INFO,
Expand Down

0 comments on commit 5406646

Please sign in to comment.