Fixes select proxy outbound server (#7727)

This commit is contained in:
DHR60 2025-08-10 11:58:07 +08:00 committed by GitHub
parent d41a73b44b
commit c561916b67
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1014,7 +1014,8 @@ public class CoreConfigSingboxService
}
//current proxy
BaseServer4Sbox? outbound = singboxConfig.endpoints?.FirstOrDefault(t => t.tag == Global.ProxyTag) == null ? singboxConfig.outbounds.First() : null;
BaseServer4Sbox? outbound = singboxConfig.endpoints?.FirstOrDefault(t => t.tag == Global.ProxyTag, null);
outbound ??= singboxConfig.outbounds.First();
var txtOutbound = EmbedUtils.GetEmbedText(Global.SingboxSampleOutbound);