Explorar el Código

Update chat_channel.py

master
Saboteur7 GitHub hace 5 meses
padre
commit
7db4253264
No se encontró ninguna clave conocida en la base de datos para esta firma ID de clave GPG: B5690EEEBB952194
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      channel/chat_channel.py

+ 2
- 2
channel/chat_channel.py Ver fichero

@@ -99,8 +99,8 @@ class ChatChannel(Channel):
nick_name_black_list = conf().get("nick_name_black_list", [])
if context.get("isgroup", False): # 群聊
# 校验关键字
match_prefix = check_prefix(content, conf().get("group_chat_prefix",[""]))
match_contain = check_contain(content, conf().get("group_chat_keyword",[""]))
match_prefix = check_prefix(content, conf().get("group_chat_prefix"))
match_contain = check_contain(content, conf().get("group_chat_keyword"))
flag = False
if context["msg"].to_user_id != context["msg"].actual_user_id:
if match_prefix is not None or match_contain is not None:


Cargando…
Cancelar
Guardar