Explorar el Código

fix: summary switch bug

master
zhayujie hace 6 meses
padre
commit
b09b46c045
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. +1
    -1
      plugins/linkai/linkai.py

+ 1
- 1
plugins/linkai/linkai.py Ver fichero

@@ -196,7 +196,7 @@ class LinkAI(Plugin):
if context.kwargs.get("isgroup") and not self.sum_config.get("group_enabled"):
return False
support_type = self.sum_config.get("type") or ["FILE", "SHARING"]
if context.type.name not in support_type:
if context.type.name not in support_type and context.type.name != "TEXT":
return False
return True



Cargando…
Cancelar
Guardar