summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--handle.c14
1 files changed, 14 insertions, 0 deletions
diff --git a/handle.c b/handle.c
index c2c32f1..6a81380 100644
--- a/handle.c
+++ b/handle.c
@@ -506,6 +506,19 @@ static void handleInvite(struct Message *msg) {
 	}
 }
 
+static void handleReplyInviting(struct Message *msg) {
+	require(msg, false, 3);
+	if (self.caps & CapInviteNotify) return;
+	struct Message invite = {
+		.nick = self.nick,
+		.user = self.user,
+		.cmd = "INVITE",
+		.params[0] = msg->params[1],
+		.params[1] = msg->params[2],
+	};
+	handleInvite(&invite);
+}
+
 static void handleErrorUserOnChannel(struct Message *msg) {
 	require(msg, false, 4);
 	uint id = idFor(msg->params[2]);
@@ -791,6 +804,7 @@ static const struct Handler {
 	{ "330", handleReplyWhoisGeneric },
 	{ "331", handleReplyNoTopic },
 	{ "332", handleReplyTopic },
+	{ "341", handleReplyInviting },
 	{ "353", handleReplyNames },
 	{ "366", handleReplyEndOfNames },
 	{ "367", handleReplyBanList },
ht'> 2020-01-14Add -b flag for live backupJune McEnroe 2020-01-14Add columnsize = 0 option to FTS indexJune McEnroe Since we don't use ranking functions and I don't see them being useful, there is no point in having columnsize, which just takes extra space in the database. In my database of approximately 3.5 million events, disabling columnsize saves about 62 MB. The migration unfortunately has to rebuild the entire index to disable it. 2020-01-12Add option for client cert and SASL EXTERNALJune McEnroe 2020-01-12Add Linux.mkJune McEnroe 2020-01-11Fix unscoop dedup window syntaxJune McEnroe 2020-01-11Bump busy timeout to 10sJune McEnroe