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

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);