Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArsentiy Milchakov <milcars@mapswithme.com>2016-11-24 18:56:05 +0300
committerGitHub <noreply@github.com>2016-11-24 18:56:05 +0300
commitd0a4499bd7c9e52ca661e81c94b9725fe64ec4fa (patch)
tree3fee1903998413f9afd88db929a4b3e67e9d2a6e
parent58fd62eb85ed936b14a5773c0d0eed195ed7356b (diff)
parent5021b15b7c147ec25c820f1fb790a48d72522fcd (diff)
Merge pull request #4747 from Zverik/fix_int_namebeta-488
[generator] Do not copy int_name from relations
-rw-r--r--generator/osm_translator.hpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/generator/osm_translator.hpp b/generator/osm_translator.hpp
index f5b37bf5d1..3c8ecf72d7 100644
--- a/generator/osm_translator.hpp
+++ b/generator/osm_translator.hpp
@@ -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")