acid-drop- Unnamed repository; edit this file 'description' to name the repository. |
git clone git://git.acid.vegas/-c.git |
Log | Files | Refs | Archive | README | LICENSE |
commit 8950faf44a651aff9efb4352216c9f4c27601d5e
parent a5e208755e9655ce98fa639d2eb7f9c2db1f17d1 Author: acidvegas <acid.vegas@acid.vegas> Date: Thu, 6 Jun 2024 16:51:16 -0400 Fixed QUIT messages not displaying, started mainlining gotify code Diffstat:
|
1 file changed, 1 insertion(+), 1 deletion(-) |
diff --git 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") { |