about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--handle.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/handle.c b/handle.c
index 4cb0e94..58fdce2 100644
--- a/handle.c
+++ b/handle.c
@@ -584,10 +584,15 @@ static void handleMode(struct Message *msg) {
 			);
 		}
 	}
-	if (strlen(buf) < 2) return;
+
+	catf(buf, sizeof(buf), " (%s", msg->params[1]);
+	for (uint i = 2; i < ParamCap; ++i) {
+		if (!msg->params[i]) break;
+		catf(buf, sizeof(buf), " %s", msg->params[i]);
+	}
 	uiFormat(
 		id, Cold, tagTime(msg),
-		"\3%02d%s\3\t%s", hash(msg->user), msg->nick, &buf[2]
+		"\3%02d%s\3\t%s)", hash(msg->user), msg->nick, &buf[2]
 	);
 }
 
intf to build final 005June McEnroe 2021-06-19Fix LDADD.crypt on DarwinJune McEnroe 2021-06-18Add -m mode option to set user modesJune McEnroe 2021-06-18Document channel keys in join optionJune McEnroe 2021-06-18Use | to separate flags from config optionsJune McEnroe 2021-06-18Stop referring to server-time as IRCv3.2June McEnroe 2021-06-17Add mailing list archive to READMEJune McEnroe 2021-06-10Stop accumulating ISUPPORT tokens once MOTD startsJune McEnroe 2021-06-09Use seprintf for snip, removing strlcpynJune McEnroe 2021-06-09Use seprintf for reserializeJune McEnroe 2021-06-09Use seprintf for capListJune McEnroe 2021-06-09Add seprintfJune McEnroe 2021-05-27Add pounce-notify to README 2.4June McEnroe 2021-05-27Fix ENVIRONMENT formatting in pounce-notify(1)June McEnroe 2021-05-27Add note about Libera.Chat SASL-only rangesJune McEnroe 2021-05-25Add QUIRKS fileJune McEnroe 2021-05-19Replace freenode with tilde.chatJune McEnroe 2021-05-04notify: Reword pounce-notify manualJune McEnroe 2021-05-02Clean up Makefiles, configure scriptsJune McEnroe 2021-04-30palaver: Exit on getopt failureJune McEnroe 2021-04-30notify: Implement pounce-notifyJune McEnroe