浏览代码

Merge pull request #1389 from scut-chenzk/chenzk

修复自己艾特自己会死循环的问题
master
zhayujie GitHub 1年前
父节点
当前提交
dedf976375
找不到此签名对应的密钥 GPG 密钥 ID: 4AEE18F83AFDEB23
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. +1
    -1
      channel/chat_channel.py

+ 1
- 1
channel/chat_channel.py 查看文件

@@ -103,7 +103,7 @@ class ChatChannel(Channel):
flag = True
if match_prefix:
content = content.replace(match_prefix, "", 1).strip()
if context["msg"].is_at:
if context["msg"].is_at and context["msg"].to_user_id != context["msg"].actual_user_id:
logger.info("[WX]receive group at")
if not conf().get("group_at_off", False):
flag = True


正在加载...
取消
保存