ソースを参照

fix: summary plugin group enable bug

develop
zhayujie 1年前
コミット
238f05f453
1個のファイルの変更1行の追加1行の削除
  1. +1
    -1
      plugins/linkai/linkai.py

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

@@ -186,7 +186,7 @@ class LinkAI(Plugin):
def _is_summary_open(self, context) -> bool:
if not self.sum_config or not self.sum_config.get("enabled"):
return False
if not context.kwargs.get("isgroup") and not self.sum_config.get("group_enabled"):
if context.kwargs.get("isgroup") and not self.sum_config.get("group_enabled"):
return False
return True



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