From 3b818314db6f319b018b11a76bdc5b0e4b06d3cf Mon Sep 17 00:00:00 2001 From: Haitao Pan Date: Fri, 6 Feb 2026 13:12:40 +0800 Subject: [PATCH] fix: Filter out wildcard agent (*) from the nodes list in SandboxNodeBindingPanel. --- cmd/accountsvc/main.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/cmd/accountsvc/main.go b/cmd/accountsvc/main.go index 2ff356d..2600302 100644 --- a/cmd/accountsvc/main.go +++ b/cmd/accountsvc/main.go @@ -1149,6 +1149,9 @@ func agentListNodesHandler(registry *agentserver.Registry) gin.HandlerFunc { agents := registry.Agents() nodes := make([]api.VlessNode, 0, len(agents)) for _, agent := range agents { + if agent.ID == "*" { + continue + } nodes = append(nodes, api.VlessNode{ Name: agent.Name, Address: agent.ID,