mirror of
https://github.com/c0re100/gotdlib.git
synced 2026-02-21 20:20:17 +01:00
Replace message id strictly
This commit is contained in:
parent
bbfcb2f946
commit
d5cf5072c8
1 changed files with 1 additions and 1 deletions
|
|
@ -206,7 +206,7 @@ func (client *Client) Send(req Request) (*Response, error) {
|
|||
return response, nil
|
||||
}
|
||||
response.Data = bytes.Replace(response.Data, []byte("{\"@type\":\"messageSendingStatePending\"}"), []byte("{\"@type\":\"updateMessageSendSucceeded\"}"), 1)
|
||||
response.Data = bytes.Replace(response.Data, []byte(strconv.FormatInt(m.Id, 10)), []byte(strconv.FormatInt(m2.Message.Id, 10)), 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):
|
||||
return response, nil
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue