From 5a0ba02276cc952e40ecea9dff2e4901b22628b5 Mon Sep 17 00:00:00 2001 From: Kiryl Kaveryn Date: Fri, 30 Aug 2024 17:50:13 +0400 Subject: [PATCH] [ios] disable location updates pausing in BG during the nav/track recording Signed-off-by: Kiryl Kaveryn --- iphone/Maps/Core/Location/MWMLocationManager.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iphone/Maps/Core/Location/MWMLocationManager.mm b/iphone/Maps/Core/Location/MWMLocationManager.mm index 2fe6cdca55..991aa6cd30 100644 --- a/iphone/Maps/Core/Location/MWMLocationManager.mm +++ b/iphone/Maps/Core/Location/MWMLocationManager.mm @@ -444,7 +444,7 @@ void setShowLocationAlert(BOOL needShow) { _locationManager = [[CLLocationManager alloc] init]; _locationManager.delegate = self; [MWMLocationManager refreshGeoModeSettingsFor:_locationManager geoMode:self.geoMode]; - _locationManager.pausesLocationUpdatesAutomatically = YES; + _locationManager.pausesLocationUpdatesAutomatically = NO; _locationManager.headingFilter = 3.0; } return _locationManager;