We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65ee73c commit b29dc87Copy full SHA for b29dc87
1 file changed
src/main.py
@@ -228,9 +228,8 @@ async def _admin_coordinator_loop() -> None:
228
229
try:
230
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:
+ # Trigger prompt when at least one online participant remains.
+ if participant_count < 1:
234
continue
235
236
# Current admin is creator-admin first, then auto-assigned admin.
0 commit comments