mirror of
https://dev.narayana.im/narayana/telegabber.git
synced 2026-08-05 04:07:07 +00:00
Fix strel ochka
This commit is contained in:
parent
f4e4692a94
commit
d48cb8b586
1 changed files with 2 additions and 2 deletions
|
|
@ -429,9 +429,9 @@ func (c *Client) messageToPrefix(message *client.Message, fileString string) str
|
||||||
// message direction
|
// message direction
|
||||||
var directionChar string
|
var directionChar string
|
||||||
if message.IsOutgoing {
|
if message.IsOutgoing {
|
||||||
directionChar = "➡ "
|
directionChar = "⇾ "
|
||||||
} else {
|
} else {
|
||||||
directionChar = "⬅ "
|
directionChar = "⇽ "
|
||||||
}
|
}
|
||||||
prefix = append(prefix, directionChar+strconv.FormatInt(message.ID, 10))
|
prefix = append(prefix, directionChar+strconv.FormatInt(message.ID, 10))
|
||||||
// show sender in group chats
|
// show sender in group chats
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue