0
0
mirror of https://github.com/markusfisch/BinaryEye.git synced 2024-09-20 03:52:16 +02:00

Enable forwarding by default

To keep forwarding intact when updating an app.

This has no effect for new installations because initially there's
no forwarding URL set. Forwarding works only when this toggle is
enabled *and* if there was a forwarding URL set.
This commit is contained in:
Markus Fisch 2022-03-29 19:44:05 +02:00
parent 62ca2299a0
commit 8cf1c35029
3 changed files with 3 additions and 3 deletions

View File

@ -143,7 +143,7 @@ class Preferences {
apply(OPEN_WITH_URL, value)
field = value
}
var sendScanActive = false
var sendScanActive = true
set(value) {
apply(SEND_SCAN_ACTIVE, value)
field = value

View File

@ -67,7 +67,7 @@
</PreferenceCategory>
<PreferenceCategory android:title="@string/send_category">
<android.support.v7.preference.SwitchPreferenceCompat
android:defaultValue="false"
android:defaultValue="true"
android:key="send_scan_active"
android:title="@string/send_scan_active"
android:summary="@string/send_scan_active_summary"/>

View File

@ -62,7 +62,7 @@
</PreferenceCategory>
<PreferenceCategory android:title="@string/send_category">
<android.support.v7.preference.SwitchPreferenceCompat
android:defaultValue="false"
android:defaultValue="true"
android:key="send_scan_active"
android:title="@string/send_scan_active"
android:summary="@string/send_scan_active_summary"/>