[search] Do not put alt name into brackets if there are no readable name.

This commit is contained in:
tatiana-yan 2020-08-01 10:23:36 +03:00 committed by mpimenov
parent 9b00cff407
commit d07008b98a

View file

@ -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 + ")";
}
}