aboutsummaryrefslogtreecommitdiff
path: root/telegram/handlers.go
diff options
context:
space:
mode:
authorBohdan Horbeshko <bodqhrohro@gmail.com>2024-01-27 14:13:45 +0300
committerBohdan Horbeshko <bodqhrohro@gmail.com>2024-01-27 14:13:45 +0300
commit599cf16cdbb8567cf2ab1ce42aee5f493884de96 (patch)
treebc9be25328223d6ce5b3c3d3868496dd0ccdc75e /telegram/handlers.go
parent81fc3ea3707cdf73b846ab55b2ecc5b8f68ccd21 (diff)
Request and send to Telegram XEP-0333 displayed markers by "receipts" option
Diffstat (limited to 'telegram/handlers.go')
-rw-r--r--telegram/handlers.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/telegram/handlers.go b/telegram/handlers.go
index 6f6d339..c715932 100644
--- a/telegram/handlers.go
+++ b/telegram/handlers.go
@@ -298,7 +298,7 @@ func (c *Client) updateMessageContent(update *client.UpdateMessageContent) {
markupFunction,
))
for _, jid := range jids {
- gateway.SendMessage(jid, strconv.FormatInt(update.ChatId, 10), text, "e"+strconv.FormatInt(update.MessageId, 10), c.xmpp, nil, false)
+ gateway.SendMessage(jid, strconv.FormatInt(update.ChatId, 10), text, "e"+strconv.FormatInt(update.MessageId, 10), c.xmpp, nil, false, false)
}
}
}