Skip to content

Commit

Permalink
fix(icp): Markdown
Browse files Browse the repository at this point in the history
  • Loading branch information
KimmyXYC committed Mar 16, 2024
1 parent ed43f6a commit d039b57
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion App/Event.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ async def handle_icp(bot, message, config):
msg = await bot.reply_to(message, f"正在查询域名 {message.text.split()[1]} 备案信息...", disable_web_page_preview=True)
status, data = await icp_record_check(message.text.split()[1], config)
if not status:
await bot.reply_to(message, f"请求失败: `{data}`")
await bot.reply_to(message, f"请求失败: `{data}`", parse_mode="MarkdownV2")
return
if not data:
icp_info = f"""查询目标: `{message.text.split()[1]}`\n备案状态: `未备案`"""
Expand Down

0 comments on commit d039b57

Please sign in to comment.