Skip to content
Merged
Changes from all commits
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
3 changes: 3 additions & 0 deletions astrbot/core/pipeline/process_stage/follow_up.py
Original file line number Diff line number Diff line change
Expand Up @@ -172,6 +172,9 @@ def try_capture_follow_up(event: AstrMessageEvent) -> FollowUpCapture | None:
if not active_sender_id or active_sender_id != sender_id:
return None

if runner_event.get_extra("agent_stop_requested"):
Comment thread
Soulter marked this conversation as resolved.
return None

ticket = runner.follow_up(message_text=_event_follow_up_text(event))
if not ticket:
return None
Expand Down
Loading