mirror of
https://github.com/c0re100/gotdlib.git
synced 2026-02-21 20:20:17 +01:00
Fix messageSendingStatePending replacer
This commit is contained in:
parent
9a3301fbd7
commit
4459ee0f55
1 changed files with 1 additions and 1 deletions
|
|
@ -211,7 +211,7 @@ func (client *Client) Send(req Request) (*Response, error) {
|
|||
if err2 != nil {
|
||||
return response, nil
|
||||
}
|
||||
response.Data = bytes.Replace(response.Data, []byte("{\"@type\":\"messageSendingStatePending\"}"), []byte("{\"@type\":\"updateMessageSendSucceeded\"}"), 1)
|
||||
response.Data = bytes.Replace(response.Data, []byte("\"@type\":\"messageSendingStatePending\""), []byte("\"@type\":\"updateMessageSendSucceeded\""), 1)
|
||||
response.Data = bytes.Replace(response.Data, []byte("\"id\":"+strconv.FormatInt(m.Id, 10)), []byte("\"id\":"+strconv.FormatInt(m2.Message.Id, 10)), 1)
|
||||
return response, nil
|
||||
case <-time.After(1 * time.Second):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue