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
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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")
{