diff --git a/README.md b/README.md index 253692b..5a0ad88 100644 --- a/README.md +++ b/README.md @@ -900,5 +900,6 @@ Here are some examples of template: * [Bincode-telegram-bot](https://github.com/tusharhero/bincode-telegram-bot) by [tusharhero](https://github.com/tusharhero) - Makes [bincodes](https://github.com/tusharhero/bincode) from text provides and also converts them back to text. * [hydrolib_bot](https://github.com/Mayson90/hydrolib_bot) Toolset for Hydrophilia tabletop game (game cards, rules, structure...). * [Gugumoe-bot](http://t.me/gugumoe_bot) ([source](https://github.com/GooGuJiang/Gugumoe-bot)) by [咕谷酱](https://gmoe.cc) GuXiaoJiang is a multi-functional robot, such as OSU game information query, IP test, animation screenshot search and other functions. +* [Feedback-bot](https://github.com/coder2020official/feedbackbot) A feedback bot for user-admin communication. Made on AsyncTeleBot, using [template](https://github.com/coder2020official/asynctelebot_template). **Want to have your bot listed here? Just make a pull request. Only bots with public source code are accepted.** diff --git a/telebot/async_telebot.py b/telebot/async_telebot.py index d25e4fd..2241316 100644 --- a/telebot/async_telebot.py +++ b/telebot/async_telebot.py @@ -358,6 +358,7 @@ class AsyncTeleBot: if self.exception_handler: self.exception_handler.handle(e) else: logger.error(str(e)) + break if middlewares: diff --git a/telebot/asyncio_helper.py b/telebot/asyncio_helper.py index 75492af..82534ab 100644 --- a/telebot/asyncio_helper.py +++ b/telebot/asyncio_helper.py @@ -1816,6 +1816,7 @@ class ApiTelegramException(ApiException): result) self.result_json = result_json self.error_code = result_json['error_code'] + self.description = result_json['description'] class RequestTimeout(Exception): """