From 686b72f0495ba623eec55e02494f2834348621fe Mon Sep 17 00:00:00 2001 From: INFINITY BOTZ <132870552+ibhub0@users.noreply.github.com> Date: Mon, 30 Sep 2024 19:51:39 +0530 Subject: [PATCH] bug --- plugins/commands.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/plugins/commands.py b/plugins/commands.py index 94fddbce..83a0df19 100644 --- a/plugins/commands.py +++ b/plugins/commands.py @@ -14,7 +14,7 @@ from utils import get_settings, get_size, is_req_subscribed, save_group_settings, temp, verify_user, check_token, check_verification, get_token, get_shortlink, get_tutorial from database.connections_mdb import active_connection # from plugins.pm_filter import ENABLE_SHORTLINK -import re, asyncio, os, sys +import re, asyncio, sys import json import base64 logger = logging.getLogger(__name__) @@ -28,7 +28,7 @@ async def start(client, message): buttons = [[ InlineKeyboardButton('☆ ᴀᴅᴅ ᴍᴇ ᴛᴏ ʏᴏᴜʀ ɢʀᴏᴜᴘ ☆', url=f'http://t.me/{temp.U_NAME}?startgroup=true') ],[ - InlineKeyboardButton('🍁 ʜᴏᴡ ᴛᴏ ᴜꜱᴇ 🍁', url="https://t.me/{temp.U_NAME}?start=help") + InlineKeyboardButton('🍁 ʜᴏᴡ ᴛᴏ ᴜꜱᴇ 🍁', url=f"https://t.me/{temp.U_NAME}?start=help") ]] reply_markup = InlineKeyboardMarkup(buttons) await message.reply(script.GSTART_TXT.format(message.from_user.mention if message.from_user else message.chat.title, temp.U_NAME, temp.B_NAME), reply_markup=reply_markup, disable_web_page_preview=True)