mirror of
https://git.jabber.space/devs/cproof.git
synced 2026-07-22 09:16:21 +00:00
Handle nick changes from other users
This commit is contained in:
@@ -250,8 +250,8 @@ void
|
||||
prof_handle_room_member_online(const char * const room, const char * const nick,
|
||||
const char * const show, const char * const status)
|
||||
{
|
||||
room_add_to_roster(room, nick);
|
||||
win_show_room_member_online(room, nick);
|
||||
room_add_to_roster(room, nick, show, status);
|
||||
win_show_room_member_online(room, nick, show, status);
|
||||
win_page_off();
|
||||
}
|
||||
|
||||
@@ -302,6 +302,14 @@ prof_handle_contact_offline(char *contact, char *show, char *status)
|
||||
}
|
||||
}
|
||||
|
||||
void
|
||||
prof_handle_room_member_nick_change(const char * const room,
|
||||
const char * const old_nick, const char * const nick)
|
||||
{
|
||||
win_show_room_member_nick_change(room, old_nick, nick);
|
||||
win_page_off();
|
||||
}
|
||||
|
||||
static void
|
||||
_create_config_directory(void)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user