From 37f7706a8c3e920d89c7c264647594bcf0204491 Mon Sep 17 00:00:00 2001 From: levina <82658782+levina-lab@users.noreply.github.com> Date: Tue, 26 Oct 2021 13:49:35 +0700 Subject: [PATCH] mistake --- program/video.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/program/video.py b/program/video.py index 7ca3ed5..695c09f 100644 --- a/program/video.py +++ b/program/video.py @@ -91,7 +91,7 @@ async def vplay(client, m: Message): stream_type=StreamType().pulse_stream, ) add_to_queue(chat_id, songname, dl, link, "Video", Q) - await loser.edit(f"๐Ÿ’ก **video streaming is started.**\n\n๐Ÿท **Name:** [{songname}]({link})\n๐Ÿ’ฌ **Chat:** `{chat_id}`", disable_web_page_preview=True) + await loser.edit(f"๐Ÿ’ก **video streaming started.**\n\n๐Ÿท **Name:** [{songname}]({link})\n๐Ÿ’ฌ **Chat:** `{chat_id}`", disable_web_page_preview=True) else: if len(m.command) < 2: await m.reply("ยป reply to an **audio file** or **give something to search.**") @@ -125,7 +125,7 @@ async def vplay(client, m: Message): stream_type=StreamType().pulse_stream, ) add_to_queue(chat_id, songname, ytlink, url, "Video", Q) - await loser.edit(f"๐Ÿ’ก **video streaming is started.**\n\n๐Ÿท **Name:** [{songname}]({link})\n๐Ÿ’ฌ **Chat:** `{chat_id}`", disable_web_page_preview=True) + await loser.edit(f"๐Ÿ’ก **video streaming started.**\n\n๐Ÿท **Name:** [{songname}]({url})\n๐Ÿ’ฌ **Chat:** `{chat_id}`", disable_web_page_preview=True) except Exception as ep: await loser.edit(f"โŒ issues: `{ep}`") @@ -222,6 +222,6 @@ async def vstream(client, m: Message): stream_type=StreamType().pulse_stream, ) add_to_queue(chat_id, "Live Stream", livelink, link, "Video", Q) - await loser.edit(f"๐Ÿ’ก **video [live stream]({link}) is started.**\n๐Ÿ’ฌ chat: `{chat_id}`", disable_web_page_preview=True) + await loser.edit(f"๐Ÿ’ก **video [live stream]({link}) started.**\n๐Ÿ’ฌ chat: `{chat_id}`", disable_web_page_preview=True) except Exception as ep: await loser.edit(f"โŒ issues: `{ep}`")