Skip to content

Commit b29dc87

Browse files
committed
fix: adjust admin coordination prompt trigger to require at least one online participant
1 parent 65ee73c commit b29dc87

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

src/main.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -228,9 +228,8 @@ async def _admin_coordinator_loop() -> None:
228228

229229
try:
230230
participant_count = len(participating_online_agents)
231-
# Coordination prompts are only meaningful when at least two online
232-
# participants are involved in the thread.
233-
if participant_count < 2:
231+
# Trigger prompt when at least one online participant remains.
232+
if participant_count < 1:
234233
continue
235234

236235
# Current admin is creator-admin first, then auto-assigned admin.

0 commit comments

Comments
 (0)