circo

claudio's IRC oasis
git clone git://git.bitsmanent.org/circo
Log | Files | Refs | README | LICENSE

commit 3276a0efed9a5c22c130d0aba47e69fe5e938845
parent 413c8eebf3e1ed6df15a01a53a0a7c3526d3304f
Author: Claudio Alessi <smoppy@gmail.com>
Date:   Thu, 10 Feb 2022 19:27:57 +0100

Remove user from list when quit.

Diffstat:
Mcirco.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/circo.c b/circo.c @@ -1213,6 +1213,7 @@ recv_privmsg(char *from, char *to, char *txt) { void recv_quit(char *who, char *u, char *txt) { + nickmdel(who); bprintf(sel, "%CQUIT%..0C %s (%s)\n", colors[IRCMessage], who, txt); }