From 8950faf44a651aff9efb4352216c9f4c27601d5e Mon Sep 17 00:00:00 2001 From: acidvegas Date: Thu, 6 Jun 2024 16:51:16 -0400 Subject: [PATCH] Fixed QUIT messages not displaying, started mainlining gotify code --- src/main.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.ino b/src/main.ino index ebf3bfc..cc08f60 100644 --- a/src/main.ino +++ b/src/main.ino @@ -1165,7 +1165,7 @@ void parseAndDisplay(String line) { } else if (command == "PART" && line.indexOf(channel) != -1) { String senderNick = line.substring(1, line.indexOf('!')); addLine(senderNick, " has EMO-QUIT " + String(channel), "part"); - } else if (command == "QUIT") { + } else if (command == "QUIT") { String senderNick = line.substring(1, line.indexOf('!')); addLine(senderNick, "", "quit"); } else if (command == "NICK") {