forked from organicmaps/organicmaps
Merge pull request #4653 from rokuz/fixed-false-positioning
Fixed false positioning in case of location turning off
This commit is contained in:
commit
df752eb5e3
1 changed files with 1 additions and 1 deletions
|
@ -287,7 +287,7 @@ void setPermissionRequested()
|
|||
|
||||
- (void)processLocationUpdate:(CLLocation *)locationInfo
|
||||
{
|
||||
if (!locationInfo)
|
||||
if (!locationInfo || self.lastLocationStatus != location::TLocationError::ENoError)
|
||||
return;
|
||||
location::GpsInfo const gpsInfo = gpsInfoFromLocation(locationInfo);
|
||||
[self onLocationUpdate:gpsInfo];
|
||||
|
|
Loading…
Add table
Reference in a new issue