Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 27a7a6cb authored by Mike Lockwood's avatar Mike Lockwood
Browse files

LocationTracker: Fix default values for debug and signal strength logging.



Set default to false to match the checkbox values in the preference resource.

Signed-off-by: default avatarMike Lockwood <lockwood@android.com>
parent e5efe212
Loading
Loading
Loading
Loading
+2 −2
Original line number Original line Diff line number Diff line
@@ -193,11 +193,11 @@ public class TrackerService extends Service {
    }
    }


    private boolean doDebugLogging() {
    private boolean doDebugLogging() {
        return getPreferences().getBoolean(DEBUG_PREF, true);
        return getPreferences().getBoolean(DEBUG_PREF, false);
    }
    }


    private boolean trackSignalStrength() {
    private boolean trackSignalStrength() {
        return getPreferences().getBoolean(SIGNAL_PREF, true);
        return getPreferences().getBoolean(SIGNAL_PREF, false);
    }
    }


    private float getLocationMinDistance() {
    private float getLocationMinDistance() {