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