From 1efe465e9dca9ec7bfef285cdb9cfdf491f9d005 Mon Sep 17 00:00:00 2001 From: _run Date: Fri, 15 Jul 2022 22:06:18 +0500 Subject: [PATCH 1/3] Update async_telebot.py --- telebot/async_telebot.py | 1 + 1 file changed, 1 insertion(+) diff --git a/telebot/async_telebot.py b/telebot/async_telebot.py index 4d38129..f1f1c83 100644 --- a/telebot/async_telebot.py +++ b/telebot/async_telebot.py @@ -351,6 +351,7 @@ class AsyncTeleBot: if self.exception_handler: self.exception_handler.handle(e) else: logger.error(str(e)) + break if middlewares: From ea1efad1ea42d79210236df3b7961a95c6a2cc9e Mon Sep 17 00:00:00 2001 From: _run Date: Fri, 15 Jul 2022 22:28:43 +0500 Subject: [PATCH 2/3] Update asyncio_helper.py --- telebot/asyncio_helper.py | 1 + 1 file changed, 1 insertion(+) 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): """ From 3ffd06fcca62f27b47116824b807ee8703787f56 Mon Sep 17 00:00:00 2001 From: _run Date: Fri, 15 Jul 2022 23:26:55 +0500 Subject: [PATCH 3/3] Add feedback-bot to `Bots using this library` section --- README.md | 1 + 1 file changed, 1 insertion(+) 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.**