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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -127,14 +127,15 @@ def _check_result(method_name, result):
try:
result_json = result.json()
except:
raise ApiInvalidJSONException(method_name, result)
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