mirror of
https://github.com/M66B/NetGuard.git
synced 2025-03-10 06:03:10 +00:00
Enabled VPN handover by default
This commit is contained in:
parent
37c232fd68
commit
bb199e8d99
3 changed files with 3 additions and 3 deletions
|
@ -572,7 +572,7 @@ public class ServiceSinkhole extends VpnService implements SharedPreferences.OnS
|
|||
} else {
|
||||
last_builder = builder;
|
||||
|
||||
boolean handover = prefs.getBoolean("handover", false);
|
||||
boolean handover = prefs.getBoolean("handover", true);
|
||||
Log.i(TAG, "VPN restart handover=" + handover);
|
||||
|
||||
if (handover) {
|
||||
|
|
|
@ -183,7 +183,7 @@
|
|||
android:key="filter_udp"
|
||||
android:title="@string/setting_filter_udp" />
|
||||
<CheckBoxPreference
|
||||
android:defaultValue="false"
|
||||
android:defaultValue="true"
|
||||
android:dependency="filter"
|
||||
android:key="handover"
|
||||
android:title="@string/setting_handover" />
|
||||
|
|
|
@ -183,7 +183,7 @@
|
|||
android:key="filter_udp"
|
||||
android:title="@string/setting_filter_udp" />
|
||||
<eu.faircode.netguard.SwitchPreference
|
||||
android:defaultValue="false"
|
||||
android:defaultValue="true"
|
||||
android:dependency="filter"
|
||||
android:key="handover"
|
||||
android:title="@string/setting_handover" />
|
||||
|
|
Loading…
Add table
Reference in a new issue