Fix null ref
This commit is contained in:
parent
a583417eee
commit
500f000939
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ public abstract class MenuTitleController {
|
|||
if(Algorithms.isEmpty(streetName)) {
|
||||
streetName = "";
|
||||
}
|
||||
if(Algorithms.isEmpty(ref)) {
|
||||
if(!Algorithms.isEmpty(ref)) {
|
||||
streetName += ", "+ ref;
|
||||
}
|
||||
streetStr = streetName;
|
||||
|
|
Loading…
Reference in a new issue