浏览代码

fix: single reply in no prefix

master
zhayujie 1年前
父节点
当前提交
efd12dac35
共有 2 个文件被更改,包括 3 次插入2 次删除
  1. +2
    -1
      .gitignore
  2. +1
    -1
      channel/wechat/wechat_channel.py

+ 2
- 1
.gitignore 查看文件

@@ -8,4 +8,5 @@ config.json
QR.png
nohup.out
tmp
plugins.json
plugins.json
itchat.pkl

+ 1
- 1
channel/wechat/wechat_channel.py 查看文件

@@ -95,7 +95,7 @@ class WechatChannel(Channel):
return
if match_prefix:
content = content.replace(match_prefix, '', 1).strip()
else:
elif match_prefix is None:
return
context = Context()
context.kwargs = {'isgroup': False, 'msg': msg, 'receiver': other_user_id, 'session_id': other_user_id}


正在加载...
取消
保存