Fix 1618
This commit is contained in:
parent
5182f7fb61
commit
9b15c5dafd
1 changed files with 1 additions and 1 deletions
|
@ -657,7 +657,7 @@ public class RouteInfoControls {
|
||||||
} else if(alarm.getType() == AlarmInfo.STOP) {
|
} else if(alarm.getType() == AlarmInfo.STOP) {
|
||||||
// text = "STOP";
|
// text = "STOP";
|
||||||
}
|
}
|
||||||
visible = text.length() > 0;
|
visible = text != null && text.length() > 0;
|
||||||
if (visible) {
|
if (visible) {
|
||||||
if (alarm.getType() == AlarmInfo.SPEED_CAMERA) {
|
if (alarm.getType() == AlarmInfo.SPEED_CAMERA) {
|
||||||
visible = cams;
|
visible = cams;
|
||||||
|
|
Loading…
Reference in a new issue