mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2025-12-29 17:44:50 +00:00
Fix
This commit is contained in:
parent
04a3999512
commit
5d8ea16ba3
1 changed files with 4 additions and 1 deletions
|
|
@ -125,7 +125,10 @@ async def stream_extract(bot, update):
|
|||
if update.from_user.id != usr.from_user.id:
|
||||
return await update.answer("⚠️ Access Denied!", True)
|
||||
_, map, codec = cb_data.split("_")
|
||||
link = update.message.reply_to_message.command[1]
|
||||
try:
|
||||
link = update.message.reply_to_message.command[1]
|
||||
except:
|
||||
raise StopPropagation
|
||||
await update.message.edit("Processing...")
|
||||
try:
|
||||
if codec == "aac":
|
||||
|
|
|
|||
Loading…
Reference in a new issue