about summary refs log tree commit diff
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2020-02-20 05:04:58 -0500
committerJune McEnroe <june@causal.agency>2020-02-20 05:04:58 -0500
commit9609723dc641957d10ecc9fa725743b1dc71644c (patch)
treeebaf912bf26877acef7162937313fa28bf859a3c
parentHandle MODE changing channel list modes (diff)
downloadcatgirl-9609723dc641957d10ecc9fa725743b1dc71644c.tar.gz
catgirl-9609723dc641957d10ecc9fa725743b1dc71644c.zip
Handle ERR_CHANOPRIVSNEEDED
-rw-r--r--handle.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/handle.c b/handle.c
index d268d14..f49ed3b 100644
--- a/handle.c
+++ b/handle.c
@@ -553,6 +553,14 @@ static void handleMode(struct Message *msg) {
 	}
 }
 
+static void handleErrorChanopPrivsNeeded(struct Message *msg) {
+	require(msg, false, 3);
+	uiFormat(
+		idFor(msg->params[1]), Cold, tagTime(msg),
+		"%s", msg->params[2]
+	);
+}
+
 static void handleErrorUserNotInChannel(struct Message *msg) {
 	require(msg, false, 4);
 	uiFormat(
@@ -886,6 +894,7 @@ static const struct Handler {
 	{ "441", handleErrorUserNotInChannel },
 	{ "443", handleErrorUserOnChannel },
 	{ "478", handleErrorBanListFull },
+	{ "482", handleErrorChanopPrivsNeeded },
 	{ "671", handleReplyWhoisGeneric },
 	{ "900", handleReplyLoggedIn },
 	{ "904", handleErrorSASLFail },