Show message in console when receiving chat room invites

This commit is contained in:
James Booth
2013-03-24 21:46:00 +00:00
parent 270dae472f
commit b6095ca955
7 changed files with 121 additions and 3 deletions

View File

@@ -316,6 +316,14 @@ prof_handle_leave_room(const char * const room)
muc_leave_room(room);
}
void prof_handle_room_invite(jabber_invite_t invite_type,
const char * const invitor, const char * const room,
const char * const reason)
{
cons_show_room_invite(invitor, room, reason);
win_current_page_off();
}
void
prof_handle_contact_online(char *contact, Resource *resource,
GDateTime *last_activity)