Fixed #5984
This commit is contained in:
parent
47ddef7961
commit
c07886f01c
1 changed files with 1 additions and 1 deletions
|
@ -721,7 +721,7 @@ public class VoiceRouter {
|
||||||
|
|
||||||
private void playAndArriveAtDestination(NextDirectionInfo info) {
|
private void playAndArriveAtDestination(NextDirectionInfo info) {
|
||||||
if (isTargetPoint(info)) {
|
if (isTargetPoint(info)) {
|
||||||
String pointName = info == null ? "" : info.pointName;
|
String pointName = (info == null || info.pointName == null) ? "" : info.pointName;
|
||||||
CommandBuilder play = getNewCommandPlayerToPlay();
|
CommandBuilder play = getNewCommandPlayerToPlay();
|
||||||
if (play != null) {
|
if (play != null) {
|
||||||
notifyOnVoiceMessage();
|
notifyOnVoiceMessage();
|
||||||
|
|
Loading…
Reference in a new issue