From e984bb5c641822f44afcdcb64b55833228caa810 Mon Sep 17 00:00:00 2001 From: levina <82658782+levina-lab@users.noreply.github.com> Date: Thu, 28 Oct 2021 18:36:43 +0700 Subject: [PATCH] fixes --- program/music.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/program/music.py b/program/music.py index 470a354..b923746 100644 --- a/program/music.py +++ b/program/music.py @@ -140,7 +140,7 @@ async def play(client, m: Message): reply_markup=keyboard, ) except Exception as ep: - await suhu.edit(f"❌ issues: `{ep}`") + await m.reply_text(f"❌ issues: `{ep}`") else: if len(m.command) < 2: @@ -184,7 +184,7 @@ async def play(client, m: Message): reply_markup=keyboard, ) except Exception as ep: - await suhu.edit(f"❌ issues: `{ep}`") + await m.reply_text(f"❌ issues: `{ep}`") @Client.on_message(command(["stream", f"stream@{BOT_USERNAME}"]) & other_filters) @@ -247,4 +247,4 @@ async def stream(client, m: Message): reply_markup=keyboard, ) except Exception as ep: - await suhu.edit(f"❌ issues: `{ep}`") + await m.reply_text(f"❌ issues: `{ep}`")