Skip to content

Commit

Permalink
Merge branch 'beta'
Browse files Browse the repository at this point in the history
  • Loading branch information
yashoswalyo committed Oct 17, 2022
2 parents 686017b + 8c04e68 commit 691bc8c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bot.py
Original file line number Diff line number Diff line change
Expand Up @@ -433,8 +433,8 @@ async def media_extracter(c: Client, m: Message):
await m.reply("File name not found; goto @yashoswalyo")
return
markup = bMaker.makebuttons(
set1=["Audio", "Subtitle", "All", "Cancel"],
set2=[f"extract_audio_{mid}", f"extract_subtitle_{mid}", f"extract_all_{mid}", 'cancel'],
set1=["Audio", "Subtitle", "Cancel"],
set2=[f"extract_audio_{mid}", f"extract_subtitle_{mid}", 'cancel'],
isCallback=True,
rows=2,
)
Expand Down Expand Up @@ -648,7 +648,7 @@ async def makeButtons(bot: Client, m: Message, db: dict):
[
InlineKeyboardButton(
f"{media.file_name}",
callback_data=f"showFileName_{i.id}",
callback_data=f"tryotherbutton",
)
]
)
Expand All @@ -673,7 +673,7 @@ async def makeButtons(bot: Client, m: Message, db: dict):
[
InlineKeyboardButton(
f"{media.file_name}",
callback_data=f"showFileName_{i.id}",
callback_data=f"tryotherbutton",
)
]
)
Expand Down

0 comments on commit 691bc8c

Please sign in to comment.