瀏覽代碼

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

Loading…
取消
儲存