diff --git a/map/framework.cpp b/map/framework.cpp index e0c9f3e0bd..cfc0550cfd 100644 --- a/map/framework.cpp +++ b/map/framework.cpp @@ -2177,11 +2177,16 @@ std::optional Framework::BuildPlacePageInfo( outInfo); return outInfo; } + case UserMark::Type::TRANSIT: + { + /// @todo Add useful info in PP for TransitMark (public transport). + break; + } default: ASSERT(false, ("FindNearestUserMark returned invalid mark.")); } - SetPlacePageLocation(outInfo); + SetPlacePageLocation(outInfo); return outInfo; } }