From 4312e8d9d77874e7b8ba1bef5024e40c2fa7a339 Mon Sep 17 00:00:00 2001 From: VladiMihaylenko Date: Tue, 28 Feb 2017 19:12:02 +0300 Subject: [PATCH] Using score count instead of score. --- iphone/Maps/UI/PlacePage/MWMPlacePageData.mm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/iphone/Maps/UI/PlacePage/MWMPlacePageData.mm b/iphone/Maps/UI/PlacePage/MWMPlacePageData.mm index 831344fbef..32517cbe65 100644 --- a/iphone/Maps/UI/PlacePage/MWMPlacePageData.mm +++ b/iphone/Maps/UI/PlacePage/MWMPlacePageData.mm @@ -381,7 +381,7 @@ using namespace place_page; - (NSString *)hotelDescription { return @(m_hotelInfo.m_description.c_str()); } - (vector const &)facilities { return m_hotelInfo.m_facilities; } - (vector const &)reviews { return m_hotelInfo.m_reviews; } -- (NSUInteger)numberOfReviews { return m_hotelInfo.m_score; } +- (NSUInteger)numberOfReviews { return m_hotelInfo.m_scoreCount; } - (NSArray *)photos { NSMutableArray * res = [@[] mutableCopy];