Fix @ group alias

This commit is contained in:
Changhua
2023-10-02 18:52:08 +08:00
parent ce6655f9c3
commit 0ee6e0ea79
2 changed files with 10 additions and 7 deletions

View File

@@ -1,8 +1,8 @@
chinese_calendar
lxml lxml
openai openai
pandas pandas
pyyaml pyyaml
requests requests
schedule schedule
wcferry>=39.0.0.1 wcferry>=39.0.3.0
chinese_calendar

View File

@@ -165,12 +165,15 @@ class Robot(Job):
# msg 中需要有 @ 名单中一样数量的 @ # msg 中需要有 @ 名单中一样数量的 @
ats = "" ats = ""
if at_list: if at_list:
wxids = at_list.split(",") if at_list == "nofity@all": # @所有人
for wxid in wxids: ats = " @所有人"
# 这里偷个懒,直接 @昵称。有必要的话可以通过 MicroMsg.db 里的 ChatRoom 表,解析群昵称 else:
ats += f" @{self.allContacts.get(wxid, '')}" wxids = at_list.split(",")
for wxid in wxids:
# 根据 wxid 查找群昵称
ats += f" @{self.wcf.get_alias_in_chatroom(wxid, receiver)}"
# {msg}{ats} 表示要发送的消息内容后面紧跟@,例如 北京天气情况为xxx @张三,微信规定需这样写,否则@不生效 # {msg}{ats} 表示要发送的消息内容后面紧跟@,例如 北京天气情况为xxx @张三
if ats == "": if ats == "":
self.LOG.info(f"To {receiver}: {msg}") self.LOG.info(f"To {receiver}: {msg}")
self.wcf.send_text(f"{msg}", receiver, at_list) self.wcf.send_text(f"{msg}", receiver, at_list)