ソースを参照

fix: prefix match

master
zhayujie 2年前
コミット
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

読み込み中…
キャンセル
保存