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);
|
int tag = WireFormat.getTagFieldNumber(t);
|
||||||
switch (tag) {
|
switch (tag) {
|
||||||
case 0:
|
case 0:
|
||||||
if(region.enName == null || region.enName.length() == 0){
|
if (region.enName == null || region.enName.length() == 0) {
|
||||||
region.enName = Junidecode.unidecode(region.name);
|
region.enName = region.name == null ? "" : Junidecode.unidecode(region.name);
|
||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
case OsmandOdb.OsmAndAddressIndex.NAME_FIELD_NUMBER :
|
case OsmandOdb.OsmAndAddressIndex.NAME_FIELD_NUMBER :
|
||||||
|
|
Loading…
Reference in a new issue