mirror of
https://github.com/eternnoir/pyTelegramBotAPI.git
synced 2023-08-10 21:12:57 +03:00
Update asyncio_filters.py
This commit is contained in:
parent
292df419ba
commit
102fe3a8fb
@ -278,7 +278,10 @@ class StateFilter(AdvancedCustomFilter):
|
|||||||
if text == '*': return True
|
if text == '*': return True
|
||||||
|
|
||||||
if isinstance(text, list):
|
if isinstance(text, list):
|
||||||
new_text = [i.name for i in text]
|
new_text = []
|
||||||
|
for i in text:
|
||||||
|
if isclass(i): i = i.name
|
||||||
|
new_text.append(i)
|
||||||
text = new_text
|
text = new_text
|
||||||
elif isinstance(text, object):
|
elif isinstance(text, object):
|
||||||
text = text.name
|
text = text.name
|
||||||
|
Loading…
x
Reference in New Issue
Block a user