From 9ef41062d316be092fbd07a4aef05eb076622556 Mon Sep 17 00:00:00 2001
From: John Preston <johnprestonmail@gmail.com>
Date: Mon, 30 Mar 2020 23:53:10 +0400
Subject: [PATCH] Ignore whitespaces in dice sending.

---
 Telegram/SourceFiles/api/api_sending.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Telegram/SourceFiles/api/api_sending.cpp b/Telegram/SourceFiles/api/api_sending.cpp
index d0c5315ac..eaac3957e 100644
--- a/Telegram/SourceFiles/api/api_sending.cpp
+++ b/Telegram/SourceFiles/api/api_sending.cpp
@@ -200,7 +200,7 @@ void SendExistingPhoto(
 
 bool SendDice(Api::MessageToSend &message) {
 	static const auto kDiceString = QString::fromUtf8("\xF0\x9F\x8E\xB2");
-	if (message.textWithTags.text != kDiceString) {
+	if (message.textWithTags.text.midRef(0).trimmed() != kDiceString) {
 		return false;
 	}
 	const auto history = message.action.history;