better suppress wrong turn instructions, remaining bug is when route was freshly recalculated
This commit is contained in:
parent
d4d8aff50e
commit
0b7b615c3d
1 changed files with 1 additions and 1 deletions
|
@ -386,7 +386,7 @@ public class RoutingHelper {
|
|||
}
|
||||
}
|
||||
}
|
||||
if (suppressTurnPrompt == false && calculateRoute == false) {
|
||||
if ((suppressTurnPrompt == false && calculateRoute == false) || makeUturnWhenPossible == true) {
|
||||
voiceRouter.updateStatus(currentLocation, makeUturnWhenPossible);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue