mirror of
https://github.com/Chatterino/chatterino2.git
synced 2024-11-13 19:49:51 +01:00
added spaces when sending whispers
This commit is contained in:
parent
9aa9b90267
commit
abd46d0bb8
|
@ -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<messages::TextElement>(rest, messages::MessageElement::Text);
|
||||
|
|
Loading…
Reference in a new issue