mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
Merge pull request #1811 from coder2020official/continuehandling-fix
Continuehandling fix
This commit is contained in:
commit
7a20017dfb
@ -6311,7 +6311,6 @@ class TeleBot:
|
|||||||
return
|
return
|
||||||
|
|
||||||
data = {}
|
data = {}
|
||||||
params =[]
|
|
||||||
handler_error = None
|
handler_error = None
|
||||||
skip_handlers = False
|
skip_handlers = False
|
||||||
|
|
||||||
@ -6335,6 +6334,7 @@ class TeleBot:
|
|||||||
if handlers and not skip_handlers:
|
if handlers and not skip_handlers:
|
||||||
try:
|
try:
|
||||||
for handler in handlers:
|
for handler in handlers:
|
||||||
|
params = []
|
||||||
process_handler = self._test_message_handler(handler, message)
|
process_handler = self._test_message_handler(handler, message)
|
||||||
if not process_handler: continue
|
if not process_handler: continue
|
||||||
for i in inspect.signature(handler['function']).parameters:
|
for i in inspect.signature(handler['function']).parameters:
|
||||||
|
@ -486,7 +486,6 @@ class AsyncTeleBot:
|
|||||||
handler_error = None
|
handler_error = None
|
||||||
data = {}
|
data = {}
|
||||||
skip_handlers = False
|
skip_handlers = False
|
||||||
params = []
|
|
||||||
|
|
||||||
if middlewares:
|
if middlewares:
|
||||||
for middleware in middlewares:
|
for middleware in middlewares:
|
||||||
@ -507,6 +506,7 @@ class AsyncTeleBot:
|
|||||||
if handlers and not(skip_handlers):
|
if handlers and not(skip_handlers):
|
||||||
try:
|
try:
|
||||||
for handler in handlers:
|
for handler in handlers:
|
||||||
|
params = []
|
||||||
process_update = await self._test_message_handler(handler, message)
|
process_update = await self._test_message_handler(handler, message)
|
||||||
if not process_update: continue
|
if not process_update: continue
|
||||||
for i in signature(handler['function']).parameters:
|
for i in signature(handler['function']).parameters:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user