1
0
mirror of https://github.com/eternnoir/pyTelegramBotAPI.git synced 2023-08-10 21:12:57 +03:00

Update apihelper.py

This commit is contained in:
Mr. Dog
2020-08-04 05:34:13 +05:00
committed by GitHub
parent c17a2379ba
commit 1bb98483c2

View File

@ -127,14 +127,15 @@ def _check_result(method_name, result):
try:
result_json = result.json()
except:
if result.status_code != 200:
raise ApiHTTPException(method_name, result)
else:
raise ApiInvalidJSONException(method_name, result)
else:
if not result_json['ok']:
raise ApiTelegramException(method_name, result, result_json)
elif result.status_code != 200:
raise ApiHTTPException(method_name, result)
return result_json