Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
Forgot on the previous commit

Signed-off-by: Dawn India <[email protected]>
  • Loading branch information
Dawn-India committed Aug 11, 2024
1 parent 879348a commit e53d024
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions bot/helper/telegram_helper/message_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ async def isBot_canDm(message, dmMode, button=None):
button = ButtonMaker()
_msg = "You need to <b>Start</b> me in <b>DM</b>."
button.ubutton(
"Start Me",
"ꜱᴛᴀʀᴛ\nᴍᴇ",
f"https://t.me/{bot_name}?start=start",
"header"
)
Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion bot/helper/z_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit e53d024

Please sign in to comment.