From 373b233a7b7ac45ce6b941be245b982a7a514587 Mon Sep 17 00:00:00 2001 From: Alex Zolotarev Date: Tue, 29 Mar 2016 20:49:24 +0300 Subject: [PATCH] =?UTF-8?q?[editor]=20Correctly=20save=20=E2=80=9CUnknown?= =?UTF-8?q?=E2=80=9D=20state=20for=20internet.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- indexer/feature.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/indexer/feature.cpp b/indexer/feature.cpp index a90d83e57f..c6a2bdde3d 100644 --- a/indexer/feature.cpp +++ b/indexer/feature.cpp @@ -145,10 +145,19 @@ editor::XMLFeature FeatureType::ToXML(bool serializeType) const // TODO(mgsergio): Use correct sorting instead of SortBySpec based on the config. th.SortBySpec(); Classificator & cl = classif(); + static const uint32_t internetType = cl.GetTypeByPath({"internet_access"}); // TODO(mgsergio): Either improve "OSM"-compatible serialization for more complex types, // or save all our types directly, to restore and reuse them in migration of modified features. for (uint32_t const type : th) { + { // Avoid serialization of "internet" type, it is set separately in the Editor. + // Otherwise we can't reset "internet" to "Unknown" state. + uint32_t truncatedType = type; + ftype::TruncValue(truncatedType, 1); + if (truncatedType == internetType) + continue; + } + string const strType = cl.GetReadableObjectName(type); strings::SimpleTokenizer iter(strType, "-"); string const k = *iter;