소스 검색

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



Loading…
취소
저장