From c156094d708a3334fb11f66f8e73672ef06750e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82?= Date: Mon, 23 Aug 2021 14:03:38 +0200 Subject: [PATCH] Fixed away command in IRC (#3190) --- src/providers/irc/IrcCommands.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/providers/irc/IrcCommands.cpp b/src/providers/irc/IrcCommands.cpp index 4fbaeb59..e6f5e238 100644 --- a/src/providers/irc/IrcCommands.cpp +++ b/src/providers/irc/IrcCommands.cpp @@ -47,7 +47,7 @@ Outcome invokeIrcCommand(const QString &commandName, const QString &allParams, } else if (cmd == "away") { - sendRaw("AWAY" + params[0] + " :" + paramsAfter(0)); + sendRaw("AWAY " + params[0] + " :" + paramsAfter(0)); } else if (cmd == "knock") {