Parcourir la source

fix: prefix match

master
zhayujie il y a 2 ans
Parent
révision
197f0ae4b8
1 fichiers modifiés avec 1 ajouts et 2 suppressions
  1. +1
    -2
      channel/wechat/wechat_channel.py

+ 1
- 2
channel/wechat/wechat_channel.py Voir le fichier

@@ -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

Chargement…
Annuler
Enregistrer