diff options
author | Bohdan Horbeshko <bodqhrohro@gmail.com> | 2023-06-27 16:14:35 +0300 |
---|---|---|
committer | Bohdan Horbeshko <bodqhrohro@gmail.com> | 2023-06-27 16:14:35 +0300 |
commit | b5920822c4489897248b770cf7e0e4324b84db89 (patch) | |
tree | c40afc9f8423d022199b27457e95e170522d6c4d /telegram/handlers.go | |
parent | 739fc4110a9c12aa51cbd6361e5c4398c8ed7ff8 (diff) |
Send nick in messages (specially für Sava, but nahuj nado)message-nick
Diffstat (limited to 'telegram/handlers.go')
-rw-r--r-- | telegram/handlers.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/telegram/handlers.go b/telegram/handlers.go index 57402ab..8457b05 100644 --- a/telegram/handlers.go +++ b/telegram/handlers.go @@ -242,7 +242,7 @@ func (c *Client) updateMessageContent(update *client.UpdateMessageContent) { textContent.Text.Entities, markupFunction, )) - gateway.SendMessage(c.jid, strconv.FormatInt(update.ChatId, 10), text, "e"+strconv.FormatInt(update.MessageId, 10), c.xmpp, nil, false) + gateway.SendMessage(c.jid, strconv.FormatInt(update.ChatId, 10), text, "e"+strconv.FormatInt(update.MessageId, 10), c.xmpp, nil, false, "") } } |