-
Notifications
You must be signed in to change notification settings - Fork 3.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix branch pruning resolution of non boolean conditions #1167
Conversation
if (isset($storeValue) | ||
&& ( | ||
!$storeValueAsBool | ||
|| ($storeValue === '#N/A') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good remark. @PowerKiKi ? Is this the strategy that has been followed elsewhere? Should we proceed on that?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Functions::isError($cellValue)
tests for the listed errors, plus the slightly more esoteric #GETTING_DATA
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will modify this accordingly
5f045ba
to
ea7d447
Compare
Modified accordingly |
LGTM, good job 👍 |
Thank you for following up on this work ! |
This is:
Checklist:
Why this change is needed?
Branch pruning was not properly handling non boolean conditions.