diff options
author | Bohdan Horbeshko <bodqhrohro@gmail.com> | 2022-02-09 19:30:56 +0300 |
---|---|---|
committer | Bohdan Horbeshko <bodqhrohro@gmail.com> | 2022-02-09 19:30:56 +0300 |
commit | 3618dadd81008eef542202e5f4f6e4d58eb39510 (patch) | |
tree | b9996965b2bc8dcc82699ba46fc390d529551462 /telegram/utils.go | |
parent | d10b45b22a89cc2f121396affad60e882e19bef1 (diff) |
Revert "Fix strel ochka"
This reverts commit d48cb8b58682d3b9c5798913de35ae62dd20dd38.
Diffstat (limited to 'telegram/utils.go')
-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 c816c24..da8d849 100644 --- a/telegram/utils.go +++ b/telegram/utils.go @@ -612,9 +612,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 |