diff --git a/indexer/editable_map_object.cpp b/indexer/editable_map_object.cpp index 95f7970f86..b0dc29460c 100644 --- a/indexer/editable_map_object.cpp +++ b/indexer/editable_map_object.cpp @@ -578,7 +578,14 @@ template void EditableMapObject::SetCuisinesImpl(vector const & cuisines) { FeatureParams params; - params.m_types.assign(m_types.begin(), m_types.end()); + + // Ignore cuisine types as these will be set from the cuisines param + auto const & isCuisine = ftypes::IsCuisineChecker::Instance(); + for (uint32_t const type : m_types) + { + if (!isCuisine(type)) + params.m_types.push_back(type); + } Classificator const & cl = classif(); for (auto const & cuisine : cuisines)