aboutsummaryrefslogtreecommitdiff
path: root/telegram/commands.go
diff options
context:
space:
mode:
Diffstat (limited to 'telegram/commands.go')
-rw-r--r--telegram/commands.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/telegram/commands.go b/telegram/commands.go
index 48c3615..c4b5988 100644
--- a/telegram/commands.go
+++ b/telegram/commands.go
@@ -196,7 +196,7 @@ func (c *Client) unsubscribe(chatID int64) error {
func (c *Client) sendMessagesReverse(chatID int64, messages []*client.Message) {
for i := len(messages) - 1; i >= 0; i-- {
message := messages[i]
- reply, _ := c.getMessageReply(message)
+ reply, _ := c.getMessageReply(message, false, true)
gateway.SendMessage(
c.jid,