mirror of
https://github.com/NousResearch/hermes-agent.git
synced 2026-06-06 07:51:53 +00:00
fix(kanban): ignore stale HERMES_KANBAN_BOARD for removed boards
This commit is contained in:
parent
97ac94fe56
commit
8a64e1580b
2 changed files with 23 additions and 1 deletions
|
|
@ -206,7 +206,7 @@ def get_current_board() -> str:
|
|||
if env:
|
||||
try:
|
||||
normed = _normalize_board_slug(env)
|
||||
if normed:
|
||||
if normed and board_exists(normed):
|
||||
return normed
|
||||
except ValueError:
|
||||
pass
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue