Merge pull request #4653 from rokuz/fixed-false-positioning

Fixed false positioning in case of location turning off
This commit is contained in:
Илья Гречухин 2016-11-03 14:26:41 +03:00 committed by GitHub
commit df752eb5e3

View file

@ -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];