diff --git a/indexer/feature_visibility.cpp b/indexer/feature_visibility.cpp index 8d6d16067e..d4f1b6f30f 100644 --- a/indexer/feature_visibility.cpp +++ b/indexer/feature_visibility.cpp @@ -254,8 +254,11 @@ namespace if (wheelchair == type && typeLength == 2) return true; - if (sponsored == type || internet == type || event == type) - return true; + if (g != GEOM_LINE) + { + if (sponsored == type || internet == type || event == type) + return true; + } return false; }