From 804e08881912ca3f368302993fc26e997b7839a0 Mon Sep 17 00:00:00 2001 From: SithumDimalsha4 <97735163+SithumDimalsha4@users.noreply.github.com> Date: Wed, 11 May 2022 16:41:04 +0530 Subject: [PATCH] Update __main__.py --- ShadowMusic/__main__.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ShadowMusic/__main__.py b/ShadowMusic/__main__.py index 06120e5..8789dd7 100644 --- a/ShadowMusic/__main__.py +++ b/ShadowMusic/__main__.py @@ -136,7 +136,7 @@ async def help_command(_, message): await app.send_message(message.chat.id, text, reply_markup=keyboard) -@app.on_message(filters.command("start") & filters.private) +@app.on_message(filters.command("vcstart") & filters.private) async def start_command(_, message): if len(message.text.split()) == 1: out = private_panel() @@ -306,7 +306,7 @@ async def help_button(client, query): await query.message.edit( text=top_text, reply_markup=InlineKeyboardMarkup( - paginate_modules(next_page + 1, HELPABLE, "help") + paginate_modules(next_page + 1, HELPABLE, "vchelp") ), disable_web_page_preview=True, ) @@ -315,7 +315,7 @@ async def help_button(client, query): await query.message.edit( text=top_text, reply_markup=InlineKeyboardMarkup( - paginate_modules(0, HELPABLE, "help") + paginate_modules(0, HELPABLE, "vchelp") ), disable_web_page_preview=True, )