No min interval on highest

This commit is contained in:
Anton Tananaev 2025-06-17 07:23:03 -07:00
parent 8a36922c78
commit dc6be06738
2 changed files with 6 additions and 5 deletions

View file

@ -104,7 +104,7 @@ class Preferences {
disableElasticity: true,
disableStopDetection: instance.getBool(stopDetection) == false,
pausesLocationUpdatesAutomatically: instance.getBool(stopDetection) == false,
fastestLocationUpdateInterval: fastestLocationUpdateInterval > 0 ? fastestLocationUpdateInterval : null,
fastestLocationUpdateInterval: isHighestAccuracy ? 0 : fastestLocationUpdateInterval,
backgroundPermissionRationale: bg.PermissionRationale(
title: 'Allow {applicationName} to access this device\'s location in the background',
message: 'For reliable tracking, please enable {backgroundPermissionOptionLabel} location access.',