去掉插件

This commit is contained in:
liuwei
2025-04-15 14:24:30 +08:00
parent d452eb445b
commit 3d1f70b442
2 changed files with 10 additions and 8 deletions

View File

@@ -414,8 +414,10 @@ class KidPhotoExtractorPlugin(MessagePluginInterface):
def start(self) -> bool:
"""启动插件"""
self.LOG.info(f"[{self.name}] 插件已启动")
self.status = PluginStatus.RUNNING
if self.enable:
self.LOG.info(f"[{self.name}] 插件已启动")
self.status = PluginStatus.RUNNING
return False
return True
def stop(self) -> bool: