ソースを参照

fix: summary switch bug

master
zhayujie 6ヶ月前
コミット
b09b46c045
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      plugins/linkai/linkai.py

+ 1
- 1
plugins/linkai/linkai.py ファイルの表示

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



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