diff options
Diffstat (limited to 'src/common/inbound.c')
-rw-r--r-- | src/common/inbound.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/common/inbound.c b/src/common/inbound.c index 5cd888c9..3485dfd4 100644 --- a/src/common/inbound.c +++ b/src/common/inbound.c @@ -743,6 +743,7 @@ inbound_quit (server *serv, char *nick, char *ip, char *reason) { GSList *list = sess_list; session *sess; + struct User *user; int was_on_front_session = FALSE; while (list) @@ -752,9 +753,10 @@ inbound_quit (server *serv, char *nick, char *ip, char *reason) { if (sess == current_sess) was_on_front_session = TRUE; - if (userlist_remove (sess, nick)) + if (user = userlist_find (sess, nick)) { EMIT_SIGNAL (XP_TE_QUIT, sess, nick, reason, ip, NULL, 0); + userlist_remove_user (sess, user); } else if (sess->type == SESS_DIALOG && !serv->p_cmp (sess->channel, nick)) { EMIT_SIGNAL (XP_TE_QUIT, sess, nick, reason, ip, NULL, 0); |