-
Notifications
You must be signed in to change notification settings - Fork 46
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
The isset check needs to be !empty #72
Conversation
The `isset` check fails when `$json['error']` is set to an empty string, which is sometimes the case.
Looks like the hhvm test failed on master too. |
Hey @yavorm, thanks for the PR. I've been notified that there's an issue with the Travis image for HHVM, and need to update the image. What cases have you seen the API return an empty error string? |
@silverman63 |
Updated the PR description too. |
@silverman63 Please let me know once you have time to evaluate/merge this PR. Thank you! |
Hi @yavorm, will let you know. Thanks for your patience. |
@silverman63 Can we try to re-run the tests and merge this fix? |
@yavorm if you pull the latest master change, the test should pass for HHVM. |
Merge upstream changes
Thank you @silverman63, passed! |
The
isset
check fails when$json['error']
is set tofalse
, which is sometimes the case.