Open horacimacias opened 7 years ago
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
thanks for reporting, ill check TCK testsuite with this change and merge appropiately
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