Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDmitry Kunin <dkunin@mapswith.me>2013-09-23 14:49:57 +0400
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:02:24 +0300
commitcc43226bf250dd36c0ab973d2148bc4f4973feaa (patch)
tree043ca56ff45863823001a2434475acb2200aad86
parentf7f8f6b4217b64acebcf95e64d26e3263e8cb9b6 (diff)
[yots] Min time to update fix.
-rw-r--r--android/YoPme/src/com/mapswithme/location/LocationRequester.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/android/YoPme/src/com/mapswithme/location/LocationRequester.java b/android/YoPme/src/com/mapswithme/location/LocationRequester.java
index 1d13d42d1b..bca70cb784 100644
--- a/android/YoPme/src/com/mapswithme/location/LocationRequester.java
+++ b/android/YoPme/src/com/mapswithme/location/LocationRequester.java
@@ -170,7 +170,7 @@ public class LocationRequester implements Handler.Callback
if (mLocationManager.isProviderEnabled(provider))
{
mLocationManager
- .requestLocationUpdates(provider, mMinDistance, mMinDistance, getIntentForProvider(provider));
+ .requestLocationUpdates(provider, mMinTime, mMinDistance, getIntentForProvider(provider));
Log.d(TAG, "Registered provider: " + provider);
}
else