Changeset 36577aa for protocols/msn
- Timestamp:
- 2010-05-09T00:28:38Z (15 years ago)
- Branches:
- master
- Children:
- 75610c3
- Parents:
- eb37735
- Location:
- protocols/msn
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
protocols/msn/msn.c
reb37735 r36577aa 223 223 { 224 224 struct msn_switchboard *sb; 225 struct groupchat *c = imcb_chat_new( ic, who ); 225 226 226 227 if( ( sb = msn_sb_by_handle( ic, who ) ) ) … … 240 241 msn_sb_write_msg( ic, m ); 241 242 242 return NULL; 243 } 244 245 return NULL; 243 return c; 244 } 246 245 } 247 246 -
protocols/msn/sb.c
reb37735 r36577aa 237 237 /* Create the groupchat structure. */ 238 238 g_snprintf( buf, sizeof( buf ), "MSN groupchat session %d", sb->session ); 239 sb->chat = imcb_chat_new( ic, buf ); 239 if( sb->who ) 240 sb->chat = bee_chat_by_title( ic->bee, ic, sb->who ); 241 if( sb->chat == NULL ) 242 sb->chat = imcb_chat_new( ic, buf ); 240 243 241 244 /* Populate the channel. */
Note: See TracChangeset
for help on using the changeset viewer.