From 25e93323724739038ad393b6cda99e81589fc8ba Mon Sep 17 00:00:00 2001 From: Reto Brunner Date: Fri, 17 Mar 2023 14:45:50 +0100 Subject: [PATCH] Don't collapse mode changes that are important --- shared/irc.ts | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/shared/irc.ts b/shared/irc.ts index 8c95458184..846de2c2af 100644 --- a/shared/irc.ts +++ b/shared/irc.ts @@ -5,14 +5,4 @@ export function cleanIrcMessage(message: string) { return message.replace(matchFormatting, "").trim(); } -export const condensedTypes = new Set([ - "away", - "back", - "chghost", - "join", - "kick", - "mode", - "nick", - "part", - "quit", -]); +export const condensedTypes = new Set(["away", "back", "chghost", "join", "nick", "part", "quit"]);