Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix: read group_icl_enable from UMO-bound config (fixes #7305)
  • Loading branch information
saschabuehrle committed Apr 6, 2026
commit 974d55ab4ad8a01b6cf2e0ddaf71313849185db1
6 changes: 3 additions & 3 deletions astrbot/builtin_stars/astrbot/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ async def on_message(self, event: AstrMessageEvent):
if self.ltm_enabled(event) and self.ltm and has_image_or_plain:
need_active = await self.ltm.need_active_reply(event)

group_icl_enable = self.context.get_config()["provider_ltm_settings"][
"group_icl_enable"
]
group_icl_enable = self.context.get_config(
umo=event.unified_msg_origin
)["provider_ltm_settings"]["group_icl_enable"]
Comment thread
Soulter marked this conversation as resolved.
Outdated
if group_icl_enable:
"""记录对话"""
try:
Expand Down
Loading