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
setPhoneNumber(number, context) does not update isGlobal when context is changed null <=> not null
final TelURL uri2 = (TelURL)sipFactory.createURI("tel:+4711112222"); mLogger.debug("4) uri2="+uri2+" isGlobal:"+uri2.isGlobal()+ " phone-context="+uri2.getPhoneContext()+ " number="+uri2.getPhoneNumber());
uri2.setPhoneNumber("11112222", "+47"); mLogger.debug("5) uri2="+uri2+" isGlobal:"+uri2.isGlobal()+ " phone-context="+uri2.getPhoneContext()+ " number="+uri2.getPhoneNumber());
and it prints:
The text was updated successfully, but these errors were encountered:
https://bitbucket.org/telestax/telscale-sip-servlets/commits/255714d096672e160de3e87f18e557bf367e9404
Sorry, something went wrong.
No branches or pull requests
setPhoneNumber(number, context) does not update isGlobal when context is changed null <=> not null
final TelURL uri2 = (TelURL)sipFactory.createURI("tel:+4711112222");
mLogger.debug("4) uri2="+uri2+" isGlobal:"+uri2.isGlobal()+
" phone-context="+uri2.getPhoneContext()+
" number="+uri2.getPhoneNumber());
uri2.setPhoneNumber("11112222", "+47");
mLogger.debug("5) uri2="+uri2+" isGlobal:"+uri2.isGlobal()+
" phone-context="+uri2.getPhoneContext()+
" number="+uri2.getPhoneNumber());
and it prints:
The text was updated successfully, but these errors were encountered: