Subject: Conference bookmark nickname bug
When trying to use a bookmark to connect to a conference room the .Nickname property of the conference class is set to Nothing even though the <nick> is visible in teh raw xml. This is due to the .Nickname property being
this is at line 107 in protocol/extensions/bookmarks/conference.cs
public string Nickname
{
get { return GetTag("nickname"); }
set { SetTag("nickname", value); }
}
when it should be{
get { return GetTag("nickname"); }
set { SetTag("nickname", value); }
}
public string Nickname
{
get { return GetTag("nick"); }
set { SetTag("nick", value); }
}
{
get { return GetTag("nick"); }
set { SetTag("nick", value); }
}
this is at line 107 in protocol/extensions/bookmarks/conference.cs
BradleyUffner
Show profile
Link to this post
