From b6b3c5f9de9248c8ce5a4f0379f63a66bb95315e Mon Sep 17 00:00:00 2001 From: Ilya Grechuhin Date: Thu, 14 Dec 2017 14:35:39 +0300 Subject: [PATCH] [cherry] [search-booking] [ios] Fixed booking availability retrieval for search results. --- iphone/Maps/Core/Search/MWMSearch.mm | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/iphone/Maps/Core/Search/MWMSearch.mm b/iphone/Maps/Core/Search/MWMSearch.mm index 23d3de184f..ee2396edd5 100644 --- a/iphone/Maps/Core/Search/MWMSearch.mm +++ b/iphone/Maps/Core/Search/MWMSearch.mm @@ -225,7 +225,10 @@ using Observers = NSHashTable; + (BOOL)isBookingAvailableWithContainerIndex:(NSUInteger)index { - auto const & resultFeatureID = [self resultWithContainerIndex:index].GetFeatureID(); + auto const & result = [self resultWithContainerIndex:index]; + if (result.GetResultType() != search::Result::ResultType::RESULT_FEATURE) + return NO; + auto const & resultFeatureID = result.GetFeatureID(); auto const & bookingAvailableIDs = [MWMSearch manager]->m_bookingAvailableFeatureIDs; return std::binary_search(bookingAvailableIDs.begin(), bookingAvailableIDs.end(), resultFeatureID);