You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The problem is that the payload will be evaluated to false by the rule because of the evaluate method in class io.appform.jsonrules.expressions.numeric.BetweenExpression:
If the param in payload is 0 which is a IntegralNumber, then lowerBound and upperBound will be converted to long value even if they are defined as FloatingPointNumber in rule.
The text was updated successfully, but these errors were encountered:
Describe the bug
Assuming we have the following Rule and Payload:
Rule
Paylod
The problem is that the payload will be evaluated to false by the rule because of the
evaluate
method in classio.appform.jsonrules.expressions.numeric.BetweenExpression
:If the param in payload is 0 which is a IntegralNumber, then lowerBound and upperBound will be converted to long value even if they are defined as FloatingPointNumber in rule.
The text was updated successfully, but these errors were encountered: