diff options
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 a8cb814..a4fa39f 100644 --- a/telegram/handlers.go +++ b/telegram/handlers.go @@ -257,7 +257,7 @@ func (c *Client) updateMessageContent(update *client.UpdateMessageContent) { } text := editChar + fmt.Sprintf("%v | %s", update.MessageId, formatter.Format( textContent.Text.Text, - formatter.SortEntities(textContent.Text.Entities), + textContent.Text.Entities, markupFunction, )) gateway.SendMessage(c.jid, strconv.FormatInt(update.ChatId, 10), text, c.xmpp) |