forked from organicmaps/organicmaps
Merge pull request #4747 from Zverik/fix_int_name
[generator] Do not copy int_name from relations
This commit is contained in:
commit
d0a4499bd7
1 changed files with 1 additions and 1 deletions
|
@ -188,7 +188,7 @@ protected:
|
|||
TBase::AddCustomTag({"addr:street", p.second});
|
||||
|
||||
// Important! Skip all "name" tags.
|
||||
if (strings::StartsWith(p.first, "name"))
|
||||
if (strings::StartsWith(p.first, "name") || p.first == "int_name")
|
||||
continue;
|
||||
|
||||
if (!isBoundary && p.first == "boundary")
|
||||
|
|
Loading…
Add table
Reference in a new issue