浏览代码

fix: prefix match

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

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

@@ -146,9 +146,8 @@ class WechatChannel(Channel):
if reply_text:
self.send(reply_text, msg['User']['UserName'])


def check_prefix(self, content, prefix_list):
for prefix in prefix_list:
if content.lower().startswith(prefix.lower()):
if content.startswith(prefix):
return prefix
return None

正在加载...
取消
保存