Skip to content

Commit

Permalink
Update group_filter.py
Browse files Browse the repository at this point in the history
  • Loading branch information
MrMKN authored Apr 5, 2023
1 parent f658f82 commit 8a552f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions plugins/group_filter.py
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ async def next_page(bot, query):
],
)
allreq = 'allfilep' if settings['file_secure'] else 'allfile'
btn.insert(0, InlineKeyboardButton("Send All" callback_data=f"{allreq}_{req}_{key}_{n_offset}"))
btn.insert(0, InlineKeyboardButton("Send All", callback_data=f"{allreq}_{req}_{key}_{n_offset}"))

try:
await query.edit_message_reply_markup(
Expand Down Expand Up @@ -242,7 +242,7 @@ async def auto_filter(client, msg, spoll=False):
[InlineKeyboardButton(text="📄 𝗣𝗮𝗴𝗲 1/1", callback_data="pages")]
)
allreq = 'allfilep' if settings['file_secure'] else 'allfile'
btn.insert(0, InlineKeyboardButton("Send All" callback_data=f"{allreq}_{req}_{key}_{offset}"))
btn.insert(0, InlineKeyboardButton("Send All", callback_data=f"{allreq}_{req}_{key}_{offset}"))

imdb = await get_poster(search, file=(files[0]).file_name) if settings["imdb"] else None
TEMPLATE = settings['template']
Expand Down

0 comments on commit 8a552f3

Please sign in to comment.