Changeset b9f8b87 for protocols/jabber/conference.c
- Timestamp:
- 2007-07-01T16:29:21Z (18 years ago)
- Branches:
- master
- Children:
- 9c9b37c
- Parents:
- 2758cfe
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/conference.c
r2758cfe rb9f8b87 128 128 Slightly hackish way of finding out eh? ;-) */ 129 129 130 /* This is pretty messy... */ 130 /* This is pretty messy... Here it sets ext_jid to the real 131 JID of the participant. Works for non-anonymized channels. 132 Might break if someone joins a chat twice, though. */ 131 133 for( c = node->children; ( c = xt_find_node( c, "x" ) ); c = c->next ) 132 134 if( ( s = xt_find_attr( c, "xmlns" ) ) && … … 137 139 { 138 140 /* Yay, found what we need. :-) */ 139 bud->ext_jid = g_strdup( s );141 bud->ext_jid = jabber_normalize( s ); 140 142 break; 141 143 } … … 146 148 { 147 149 if( bud == jc->me ) 148 bud->ext_jid = g_strdup( ic->acc->user );150 bud->ext_jid = jabber_normalize( ic->acc->user ); 149 151 else 150 152 /* Don't want the nick to be at the end, so let's
Note: See TracChangeset
for help on using the changeset viewer.