We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
hidden
1 parent d8e336e commit acdcd60Copy full SHA for acdcd60
1 file changed
core/src/main/golang/native/tunnel/proxies.go
@@ -68,8 +68,11 @@ func QueryProxyGroupNames(excludeNotSelectable bool) []string {
68
}
69
70
for _, p := range proxies {
71
- if _, ok := p.Adapter().(outboundgroup.ProxyGroup); ok {
+ if g, ok := p.Adapter().(outboundgroup.ProxyGroup); ok {
72
if !excludeNotSelectable || p.Type() == C.Selector {
73
+ if g.Hidden() {
74
+ continue
75
+ }
76
result = append(result, p.Name())
77
78
0 commit comments