mirror of
https://github.com/M66B/NetGuard.git
synced 2024-12-25 09:21:14 +00:00
Revert "Fix condition for filtering local DNS servers"
This reverts commit 901cfcce9d
.
This commit is contained in:
parent
42056f1ccc
commit
876f1eebd6
1 changed files with 1 additions and 1 deletions
|
@ -1105,7 +1105,7 @@ public class ServiceSinkhole extends VpnService implements SharedPreferences.OnS
|
|||
// Remove local DNS servers when not routing LAN
|
||||
boolean lan = prefs.getBoolean("lan", false);
|
||||
boolean use_hosts = prefs.getBoolean("filter", false) && prefs.getBoolean("use_hosts", false);
|
||||
if (!lan && use_hosts) {
|
||||
if (lan && use_hosts) {
|
||||
List<InetAddress> listLocal = new ArrayList<>();
|
||||
try {
|
||||
Enumeration<NetworkInterface> nis = NetworkInterface.getNetworkInterfaces();
|
||||
|
|
Loading…
Reference in a new issue