diff options
author | Bohdan Horbeshko <bodqhrohro@gmail.com> | 2022-01-03 07:08:55 +0300 |
---|---|---|
committer | Bohdan Horbeshko <bodqhrohro@gmail.com> | 2022-01-03 07:08:55 +0300 |
commit | d48cb8b58682d3b9c5798913de35ae62dd20dd38 (patch) | |
tree | 5a0eef6cbbe223a7fe0af4628634124a924ff211 /telegram | |
parent | f4e4692a94b24f661d67cd4e98ac9b2ca9928c0f (diff) |
Fix strel ochka
Diffstat (limited to 'telegram')
-rw-r--r-- | telegram/utils.go | 4 |
1 files 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 |