We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Near line 1000: switch (obj.code) {
obj.code is a number but the case values are strings ("32000" and "410") - so they will never match as comparison in a switch is strict (aka ===).
The fix is to remove the quotes round the numbers.
The text was updated successfully, but these errors were encountered:
@addw thank-you for the report. And sorry for not responding sooner I somehow missed this.
Small fix, but would you like to submit a PR for this?
Sorry, something went wrong.
No branches or pull requests
Near line 1000:
switch (obj.code) {
obj.code is a number but the case values are strings ("32000" and "410") - so they will never match as comparison in a switch is strict (aka ===).
The fix is to remove the quotes round the numbers.
The text was updated successfully, but these errors were encountered: