Fix retrieving only 1 message in /history
This commit is contained in:
parent
077edae986
commit
570601d1b8
|
@ -676,7 +676,10 @@ func (c *Client) ProcessChatCommand(chatID int64, cmdline string) (string, bool)
|
|||
}
|
||||
}
|
||||
|
||||
messages, err := c.client.GetChatHistory(&client.GetChatHistoryRequest{
|
||||
var messages *client.Messages
|
||||
var err error
|
||||
for _ = range make([]struct{}, 2) {
|
||||
messages, err = c.client.GetChatHistory(&client.GetChatHistoryRequest{
|
||||
ChatID: chatID,
|
||||
Limit: limit,
|
||||
})
|
||||
|
@ -684,6 +687,12 @@ func (c *Client) ProcessChatCommand(chatID int64, cmdline string) (string, bool)
|
|||
return err.Error(), true
|
||||
}
|
||||
|
||||
// TDlib yields only the latest message on the first request
|
||||
if !(len(messages.Messages) == 1 && limit > 1) {
|
||||
break
|
||||
}
|
||||
}
|
||||
|
||||
c.sendMessagesReverse(chatID, messages.Messages)
|
||||
// members list (for admins)
|
||||
case "members":
|
||||
|
|
Loading…
Reference in a new issue