From 4f5e3f6a2702bdd8bf04cb99b333af47ea0eec6e Mon Sep 17 00:00:00 2001 From: hemirt Date: Sun, 5 May 2019 16:24:14 +0200 Subject: [PATCH] fixes #1058 --- 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 a4cd22a41..75403121a 100644 --- a/src/controllers/commands/CommandController.cpp +++ b/src/controllers/commands/CommandController.cpp @@ -38,7 +38,7 @@ using namespace chatterino; void sendWhisperMessage(const QString &text) { auto app = getApp(); - app->twitch.server->sendMessage("jtv", text); + app->twitch.server->sendMessage("jtv", text.simplified()); } bool appendWhisperMessageLocally(const QStringList &words)