From 6427302ec9ecd904fcbc1dee08b40c8a758e25ac Mon Sep 17 00:00:00 2001 From: VladiMihaylenko Date: Thu, 12 Apr 2018 18:21:45 +0300 Subject: [PATCH] [ios] Removed excess capitalization in search results. --- iphone/Maps/UI/Search/TableView/MWMSearchCommonCell.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iphone/Maps/UI/Search/TableView/MWMSearchCommonCell.mm b/iphone/Maps/UI/Search/TableView/MWMSearchCommonCell.mm index 8595708845..ef6e489422 100644 --- a/iphone/Maps/UI/Search/TableView/MWMSearchCommonCell.mm +++ b/iphone/Maps/UI/Search/TableView/MWMSearchCommonCell.mm @@ -35,7 +35,7 @@ productInfo:(search::ProductInfo const &)productInfo { [super config:result]; - self.typeLabel.text = @(result.GetFeatureTypeName().c_str()).capitalizedString; + self.typeLabel.text = @(result.GetFeatureTypeName().c_str()); auto const hotelRating = result.GetHotelRating();