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) {
|
||||
if (isTargetPoint(info)) {
|
||||
String pointName = info == null ? "" : info.pointName;
|
||||
String pointName = (info == null || info.pointName == null) ? "" : info.pointName;
|
||||
CommandBuilder play = getNewCommandPlayerToPlay();
|
||||
if (play != null) {
|
||||
notifyOnVoiceMessage();
|
||||
|
|
Loading…
Reference in a new issue