This commit is contained in:
zihanjian
2025-10-15 13:17:05 +08:00
parent f29af0e41b
commit a9baf72d19
2 changed files with 5 additions and 2 deletions

View File

@@ -382,8 +382,10 @@ class Robot(Job):
return
self._msg_timestamps.append(now)
# 去除 Markdown 粗体标记,避免微信端出现多余符号
msg = msg.replace("**", "")
ats = ""
message_to_send = msg # 保存原始消息用于记录
message_to_send = msg # 保存清理后的消息用于记录
if at_list:
if at_list == "notify@all":
ats = " @所有人"