Hotfix issue
This commit is contained in:
parent
d88d19fd52
commit
3a69405dc7
1 changed files with 2 additions and 2 deletions
|
@ -86,8 +86,8 @@ public class BinaryMapAddressReaderAdapter {
|
|||
int tag = WireFormat.getTagFieldNumber(t);
|
||||
switch (tag) {
|
||||
case 0:
|
||||
if(region.enName == null || region.enName.length() == 0){
|
||||
region.enName = Junidecode.unidecode(region.name);
|
||||
if (region.enName == null || region.enName.length() == 0) {
|
||||
region.enName = region.name == null ? "" : Junidecode.unidecode(region.name);
|
||||
}
|
||||
return;
|
||||
case OsmandOdb.OsmAndAddressIndex.NAME_FIELD_NUMBER :
|
||||
|
|
Loading…
Reference in a new issue