mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-23 19:44:20 +00:00
fix error logs
This commit is contained in:
parent
404bda88f4
commit
e61d675693
1 changed files with 2 additions and 1 deletions
|
@ -141,7 +141,8 @@ class Bot:
|
|||
async with session.request("GET", f"https://api.telegram.org/bot{token}/{endpoint}", params=params) as response:
|
||||
# Check for errors in the request
|
||||
if response.status != 200:
|
||||
raise TelegramAPIError(f"Request returned {response.status} {response.reason}\n{response.text()}")
|
||||
error = await response.text()
|
||||
raise TelegramAPIError(f"Request returned {response.status} {response.reason}\n{error}")
|
||||
# Parse the json data as soon it's ready
|
||||
data = await response.json()
|
||||
# Check for errors in the response
|
||||
|
|
Loading…
Reference in a new issue