- Timestamp:
- 2007-06-04T11:45:33Z (17 years ago)
- Branches:
- master
- Children:
- d06eabf
- Parents:
- bb95d43
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/jabber/conference.c
rbb95d43 r54f2f55 145 145 if( bud->ext_jid == NULL ) 146 146 { 147 /* Don't want the nick to be at the end, so let's 148 think of some slightly different notation to use 149 for anonymous groupchat participants in BitlBee. */ 150 bud->ext_jid = g_strdup_printf( "%s=%s", bud->resource, bud->bare_jid ); 147 if( bud == jc->me ) 148 bud->ext_jid = g_strdup( ic->acc->user ); 149 else 150 /* Don't want the nick to be at the end, so let's 151 think of some slightly different notation to use 152 for anonymous groupchat participants in BitlBee. */ 153 bud->ext_jid = g_strdup_printf( "%s=%s", bud->resource, bud->bare_jid ); 154 151 155 bud->flags |= JBFLAG_IS_ANONYMOUS; 152 156 }
Note: See TracChangeset
for help on using the changeset viewer.