We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f6de722 commit 9bef2adCopy full SHA for 9bef2ad
1 file changed
astrbot/core/star/session_plugin_manager.py
@@ -60,7 +60,9 @@ async def is_plugin_enabled_for_session(
60
bool: True表示启用,False表示禁用
61
62
"""
63
- session_config = await SessionPluginManager.get_session_plugin_config(session_id)
+ session_config = await SessionPluginManager.get_session_plugin_config(
64
+ session_id
65
+ )
66
return SessionPluginManager.is_plugin_enabled_for_session_config(
67
plugin_name,
68
session_config,
@@ -87,7 +89,9 @@ async def filter_handlers_by_session(
87
89
session_id = event.unified_msg_origin
88
90
filtered_handlers = []
91
92
93
94
95
96
for handler in handlers:
97
# 获取处理器对应的插件
0 commit comments