mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2025-12-29 17:44:50 +00:00
Fix filters
This commit is contained in:
parent
693a052d11
commit
9f3474eedd
1 changed files with 1 additions and 1 deletions
|
|
@ -161,7 +161,7 @@ async def del_filter(_, m):
|
||||||
)
|
)
|
||||||
async def filters_re(_, message):
|
async def filters_re(_, message):
|
||||||
text = message.text.lower().strip()
|
text = message.text.lower().strip()
|
||||||
if not text:
|
if not text or (m.command and m.command[0].lower() in ["filter", "addfilter"]):
|
||||||
return
|
return
|
||||||
chat_id = message.chat.id
|
chat_id = message.chat.id
|
||||||
list_of_filters = await get_filters_names(chat_id)
|
list_of_filters = await get_filters_names(chat_id)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue