From d48cb8b58682d3b9c5798913de35ae62dd20dd38 Mon Sep 17 00:00:00 2001 From: Bohdan Horbeshko Date: Sun, 2 Jan 2022 23:08:55 -0500 Subject: [PATCH] Fix strel ochka --- telegram/utils.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/telegram/utils.go b/telegram/utils.go index 641f6d6..cdd2914 100644 --- a/telegram/utils.go +++ b/telegram/utils.go @@ -429,9 +429,9 @@ func (c *Client) messageToPrefix(message *client.Message, fileString string) str // message direction var directionChar string if message.IsOutgoing { - directionChar = "➡ " + directionChar = "⇾ " } else { - directionChar = "⬅ " + directionChar = "⇽ " } prefix = append(prefix, directionChar+strconv.FormatInt(message.ID, 10)) // show sender in group chats