You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What is the expected output? What do you see instead?
missing user and a ":@<host" is returned instead
What version of the product are you using? On what operating system?
Latest svn
Please provide any additional information below.
s = ":"+this.AT; seems wrong
SipUri.prototype.getUserAtHost =function(){
if(logger!=undefined) logger.debug("SipUri:getUserAtHost()");
var user = "";
if (this.authority.getUserInfo() != null)
{
user = this.authority.getUserInfo().getUser();
}
var host = this.authority.getHost().encode();
var s = null;
if (user=="") {
s = null;
} else {
s = ":"+this.AT;
}
s=s+host;
return s;
}
Original issue reported on code.google.com by [email protected] on 30 Apr 2013 at 10:18
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 30 Apr 2013 at 10:18The text was updated successfully, but these errors were encountered: