Fixed away command in IRC (#3190)

This commit is contained in:
Paweł
2021-08-23 14:03:38 +02:00
committed by GitHub
parent e499486418
commit c156094d70
+1 -1
View File
@@ -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")
{