Ignore:
Timestamp:
2010-08-23T10:34:36Z (14 years ago)
Author:
Wilmer van der Gaast <wilmer@…>
Branches:
master
Children:
bd599b9
Parents:
241f9f6
Message:

Process incoming XMPP groupchat invites in a saner way: Create a temporary
channel the user can easily /join.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • protocols/bee_chat.c

    r241f9f6 r1aa74f55  
    233233        return NULL;
    234234}
     235
     236void imcb_chat_invite( struct im_connection *ic, const char *name, const char *who, const char *msg )
     237{
     238        bee_user_t *bu = bee_user_by_handle( ic->bee, ic, who );
     239       
     240        if( bu && ic->bee->ui->chat_invite )
     241                ic->bee->ui->chat_invite( ic->bee, bu, name, msg );
     242}
Note: See TracChangeset for help on using the changeset viewer.