fix(sling): don't show closed convoy tracking

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
mayor
2026-01-21 18:04:10 -08:00
committed by beads/crew/emma
parent 6e2169de7f
commit 53fd6bad33

View File

@@ -42,6 +42,7 @@ func isTrackedByConvoy(beadID string) string {
JOIN issues i ON d.issue_id = i.id
WHERE d.type = 'tracks'
AND i.issue_type = 'convoy'
AND i.status = 'open'
AND (d.depends_on_id = '%s' OR d.depends_on_id LIKE '%%:%s')
LIMIT 1
`, beadID, beadID)