From abd46d0bb8fd078097af3833070bfcb1f9c4c610 Mon Sep 17 00:00:00 2001 From: fourtf Date: Fri, 25 May 2018 13:55:55 +0200 Subject: [PATCH] added spaces when sending whispers --- src/controllers/commands/commandcontroller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/controllers/commands/commandcontroller.cpp b/src/controllers/commands/commandcontroller.cpp index 4265a35e0..f1b299f25 100644 --- a/src/controllers/commands/commandcontroller.cpp +++ b/src/controllers/commands/commandcontroller.cpp @@ -169,7 +169,7 @@ QString CommandController::execCommand(const QString &text, ChannelPtr channel, QString rest = ""; for (int i = 2; i < words.length(); i++) { - rest += words[i]; + rest += words[i] + " "; } b.emplace(rest, messages::MessageElement::Text);