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
Using sip-servlets 4.0.125, ProxyBranchImpl's cancel method does
if(lastResponse.getStatus() > Response.OK && !recursedBranches.isEmpty()) {
problem is recursedBranches can be null so a NPE is thrown. Probably something like this would help:
if(lastResponse.getStatus() > Response.OK && recursedBranches != null && !recursedBranches.isEmpty()) {
Log Time
The text was updated successfully, but these errors were encountered:
Fix for RestComm#339
a42001c
thanks for reporting, ill check TCK testsuite with this change and merge appropiately
Sorry, something went wrong.
No branches or pull requests
Using sip-servlets 4.0.125, ProxyBranchImpl's cancel method does
problem is recursedBranches can be null so a NPE is thrown.
Probably something like this would help:
Log Time
The text was updated successfully, but these errors were encountered: