[generator] Fixed PromoCatalogLayer

This commit is contained in:
Maksim Andrianov 2019-06-24 16:32:31 +03:00 committed by Tatiana Yan
parent 441cd8345a
commit a39a990873

View file

@ -252,11 +252,9 @@ PromoCatalogLayer::PromoCatalogLayer(std::string const & citiesFinename)
void PromoCatalogLayer::Handle(FeatureBuilder & feature)
{
if (ftypes::IsCityTownOrVillage(feature.GetTypes()))
if (ftypes::IsCityTownOrVillage(feature.GetTypes()) &&
m_cities.find(feature.GetMostGenericOsmId()) != m_cities.cend())
{
if (m_cities.find(feature.GetMostGenericOsmId()) == m_cities.cend())
return;
auto static const kPromoType = classif().GetTypeByPath({"sponsored", "promo_catalog"});
FeatureParams & params = feature.GetParams();
params.AddType(kPromoType);