diff options
author | June McEnroe <june@causal.agency> | 2020-03-09 03:08:59 -0400 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-03-09 03:08:59 -0400 |
commit | 2f53f75892494eb2f2177a21f4cbaf92a6d7ab06 (patch) | |
tree | 293511d1fe3e310ca7796c91aa6b5b25fe51078c | |
parent | Set self.pos before handling the message (diff) | |
download | catgirl-2f53f75892494eb2f2177a21f4cbaf92a6d7ab06.tar.gz catgirl-2f53f75892494eb2f2177a21f4cbaf92a6d7ab06.zip |
Ignore 422 ERR_NOMOTD
pounce will start sending these because some silly clients don't think they're connected until some MOTD reply...
Diffstat (limited to '')
-rw-r--r-- | handle.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/handle.c b/handle.c index d0236fd..4b15517 100644 --- a/handle.c +++ b/handle.c @@ -272,6 +272,10 @@ static void handleReplyMOTD(struct Message *msg) { } } +static void handleErrorNoMOTD(struct Message *msg) { + (void)msg; +} + static void handleJoin(struct Message *msg) { require(msg, true, 1); uint id = idFor(msg->params[0]); @@ -984,6 +988,7 @@ static const struct Handler { { "372", handleReplyMOTD }, { "378", handleReplyWhoisGeneric }, { "379", handleReplyWhoisGeneric }, + { "422", handleErrorNoMOTD }, { "432", handleErrorErroneousNickname }, { "433", handleErrorNicknameInUse }, { "441", handleErrorUserNotInChannel }, |