Add check for "setLocation(null)"

This commit is contained in:
Alex Sytnyk 2018-05-25 18:32:46 +03:00
parent b05547e9f9
commit de25575fa5

View file

@ -699,8 +699,10 @@ public class OsmAndLocationProvider implements SensorEventListener {
gpsSignalLost = true;
if (routingHelper.isFollowingMode() && routingHelper.getLeftDistance() > 0) {
routingHelper.getVoiceRouter().gpsLocationLost();
if (simulatePosition == null) {
setLocation(null);
}
}
setLocation(null);
}
}, LOST_LOCATION_CHECK_DELAY);
app.runMessageInUIThreadAndCancelPrevious(START_SIMULATE_LOCATION_MSG_ID, new Runnable() {