Not logged in. · Lost password · Register
Forum: agsXMPP RSS
Avatar
BradleyUffner #1
Member since Dec 2008 · 1 post
Group memberships: Members
Show profile · Link to this post
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

  1. public string Nickname
  2. {
  3.     get { return GetTag("nickname"); }
  4.     set { SetTag("nickname", value); }
  5. }
when it should be
  1. public string Nickname
  2. {
  3.     get { return GetTag("nick"); }
  4.     set { SetTag("nick", value); }
  5. }


this is at line 107 in protocol/extensions/bookmarks/conference.cs
This post was edited 2 times, last on 2016-08-01, 15:37 by Alex.
Avatar
Alex #2
Member since Feb 2003 · 4449 posts · Location: Germany
Group memberships: Administrators, Members
Show profile · Link to this post
fixed, code is in SVN.

Thanks,
Alex
Close Smaller – Larger + Reply to this post:
Verification code: VeriCode Please enter the word from the image into the text field below. (Type the letters only, lower case is okay.)
Smileys: :-) ;-) :-D :-p :blush: :cool: :rolleyes: :huh: :-/ <_< :-( :'( :#: :scared: 8-( :nuts: :-O
Special characters:
Forum: agsXMPP RSS