1
0
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:
_run 2022-02-23 13:07:25 +05:00 committed by GitHub
parent 292df419ba
commit 102fe3a8fb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -278,7 +278,10 @@ class StateFilter(AdvancedCustomFilter):
if text == '*': return True
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
elif isinstance(text, object):
text = text.name