mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
Fix example on chat_member, fix middleware-exception for async
This commit is contained in:
parent
477d02468d
commit
1cdf9640d7
@ -31,4 +31,4 @@ async def my_chat_m(message: types.ChatMemberUpdated):
|
||||
async def delall(message: types.Message):
|
||||
await bot.delete_message(message.chat.id,message.message_id)
|
||||
import asyncio
|
||||
asyncio.run(bot.polling())
|
||||
asyncio.run(bot.polling(allowed_updates=util.update_types))
|
||||
|
@ -318,7 +318,7 @@ class AsyncTeleBot:
|
||||
except Exception as e:
|
||||
handler_error = e
|
||||
|
||||
if not middleware:
|
||||
if not middlewares:
|
||||
if self.exception_handler:
|
||||
return self.exception_handler.handle(e)
|
||||
logging.error(str(e))
|
||||
|
Loading…
Reference in New Issue
Block a user