Compare commits

...

1 Commits

Author SHA1 Message Date
Alexander Whitestone
7399c83024 fix: null guard on assignees in orchestrator dispatch 2026-04-07 12:34:02 -04:00

View File

@@ -397,7 +397,7 @@ def assign_issue(repo, number, agent_name):
if not result:
return False
current = [a.get("login", "") for a in result.get("assignees", [])]
current = [a.get("login", "") for a in (result.get("assignees") or [])]
if agent_name in current:
print(f" Already assigned to {agent_name}")
return True