Passing error code
This commit is contained in:
parent
ec221ba9ea
commit
016d6acdf3
2 changed files with 2 additions and 1 deletions
2
bot.go
2
bot.go
|
@ -84,7 +84,7 @@ func (bot *BotAPI) MakeRequest(endpoint string, params url.Values) (APIResponse,
|
|||
if apiResp.Parameters != nil {
|
||||
parameters = *apiResp.Parameters
|
||||
}
|
||||
return apiResp, Error{apiResp.Description, parameters}
|
||||
return apiResp, Error{Code: apiResp.ErrorCode, Message: apiResp.Description, ResponseParameters: parameters}
|
||||
}
|
||||
|
||||
return apiResp, nil
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue