diff --git a/WebStreamer/bot/plugins/start.py b/WebStreamer/bot/plugins/start.py index fbcb19d..b8e0957 100644 --- a/WebStreamer/bot/plugins/start.py +++ b/WebStreamer/bot/plugins/start.py @@ -125,7 +125,9 @@ async def start(b, m): msg_text = "Bruh! 😁\nYour Link Generated! šŸ¤“\n\nšŸ“‚ **File Name:** `{}`\n**File Size:** `{}`\n\nšŸ“„ **Download Link:** `{}`" await m.reply_text( - text=msg_text.format(file_name, file_size, stream_link) + text=msg_text.format(file_name, file_size, stream_link), + parse_mode="Markdown", + reply_markup=InlineKeyboardMarkup([[InlineKeyboardButton("Download Now", url=stream_link)]]) ) @@ -179,4 +181,4 @@ async def help_handler(bot, message): [InlineKeyboardButton("Developer", url="https://t.me/AbirHasan2005")] ] ) - ) \ No newline at end of file + )