This commit is contained in:
DHR60 2026-04-15 11:06:03 +00:00 committed by GitHub
parent 43dcb90632
commit 3cb2869920
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 1 additions and 2 deletions

View file

@ -11,7 +11,7 @@ public partial class CoreConfigSingboxService
_coreConfig.inbounds = []; _coreConfig.inbounds = [];
if (!context.IsTunEnabled if (!context.IsTunEnabled
|| (context.IsTunEnabled && _node.Port != listenPort)) || (context.IsTunEnabled && _node.Address != Global.Loopback && _node.Port != listenPort))
{ {
var inbound = new Inbound4Sbox() var inbound = new Inbound4Sbox()
{ {

View file

@ -96,7 +96,6 @@ public partial class CoreConfigSingboxService
_coreConfig.route.rules.Add(new() _coreConfig.route.rules.Add(new()
{ {
port = [53], port = [53],
network = ["udp"],
action = "hijack-dns" action = "hijack-dns"
}); });
} }