forked from organicmaps/organicmaps-tmp
[search] Do not put alt name into brackets if there are no readable name.
This commit is contained in:
parent
9b00cff407
commit
d07008b98a
1 changed files with 1 additions and 1 deletions
|
@ -790,7 +790,7 @@ void Ranker::GetBestMatchName(FeatureType & f, string & name) const
|
|||
string readableName;
|
||||
f.GetReadableName(readableName);
|
||||
// Do nothing if alt/old name is the only name we have.
|
||||
if (readableName != name)
|
||||
if (readableName != name && !readableName.empty())
|
||||
name = readableName + " (" + name + ")";
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue