Skip to content

Commit

Permalink
Don't collapse mode changes that are important
Browse files Browse the repository at this point in the history
  • Loading branch information
brunnre8 committed Apr 6, 2024
1 parent f5867c3 commit 25e9332
Showing 1 changed file with 1 addition and 11 deletions.
12 changes: 1 addition & 11 deletions shared/irc.ts
Expand Up @@ -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"]);

0 comments on commit 25e9332

Please sign in to comment.