From 672346f591300f5e34d578abf1827599a105709e Mon Sep 17 00:00:00 2001 From: stackia Date: Fri, 4 Sep 2015 21:05:47 +0800 Subject: [PATCH] Fix a bug causing rule level NameServer override stop working. --- DNSAgent/Rule.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DNSAgent/Rule.cs b/DNSAgent/Rule.cs index a3c2b27..b903be8 100644 --- a/DNSAgent/Rule.cs +++ b/DNSAgent/Rule.cs @@ -10,7 +10,7 @@ internal class Rule public Rule() { Pattern = "$^"; - Address = "127.0.0.1"; + Address = null; NameServer = null; QueryTimeout = null; CompressionMutation = null;