From e53d024c9ac14b3756fa8cbbd56a982e43a48129 Mon Sep 17 00:00:00 2001 From: Dawn India Date: Sun, 11 Aug 2024 12:24:46 +0530 Subject: [PATCH] Minor fix Forgot on the previous commit Signed-off-by: Dawn India --- bot/helper/telegram_helper/message_utils.py | 6 +++--- bot/helper/z_utils.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/bot/helper/telegram_helper/message_utils.py b/bot/helper/telegram_helper/message_utils.py index 8512155726c8..1ae04156cbe0 100644 --- a/bot/helper/telegram_helper/message_utils.py +++ b/bot/helper/telegram_helper/message_utils.py @@ -411,7 +411,7 @@ async def isBot_canDm(message, dmMode, button=None): button = ButtonMaker() _msg = "You need to Start me in DM." button.ubutton( - "Start Me", + "ꜱᴛᴀʀᴛ\nᴍᴇ", f"https://t.me/{bot_name}?start=start", "header" ) @@ -579,11 +579,11 @@ async def anno_checker(message, pmsg=None): msg_id = message.id buttons = ButtonMaker() buttons.ibutton( - "Verify", + "ᴠᴇʀɪꜰʏ", f"verify admin {msg_id}" ) buttons.ibutton( - "Cancel", + "ᴄᴀɴᴄᴇʟ", f"verify no {msg_id}" ) user = None diff --git a/bot/helper/z_utils.py b/bot/helper/z_utils.py index 162462d58666..723b47263f0b 100644 --- a/bot/helper/z_utils.py +++ b/bot/helper/z_utils.py @@ -53,7 +53,7 @@ async def extract_link(link, shouldDel=False): link ).group(0).lower() # type: ignore elif is_gdrive_link(link): - raw_link = GoogleDriveHelper().getIdFromUrl(link) # type: ignore + raw_link = GoogleDriveHelper().getIdFromUrl(link) elif path.exists(link): if link.endswith(".nzb"): tree = ET.parse(link)