hirc

IRC client
Log | Files | Refs

commit 7b0e5716a66124dc1ba3f8edb9b98af58848a7c7
parent 14cef8273647889b01c7edfc5ed7147b00de0994
Author: hhvn <dev@hhvn.uk>
Date:   Thu,  2 Dec 2021 16:38:02 +0000

handle.c: ignore 329 numeric

Diffstat:
Mhandle.c | 4++++
1 file changed, 4 insertions(+), 0 deletions(-)

diff --git a/handle.c b/handle.c @@ -43,6 +43,10 @@ struct Handler handlers[] = { { "005", handle_RPL_ISUPPORT }, { "324", handle_RPL_CHANNELMODEIS }, { "331", handle_RPL_NOTOPIC }, + { "329", NULL }, /* ignore this: + * - it's nonstandard + * - hirc has no use for it currently + * - it's annoyingly sent after MODE */ { "332", handle_RPL_TOPIC }, { "333", handle_RPL_TOPICWHOTIME }, { "353", handle_RPL_NAMREPLY },