[booking] crash fixes

This commit is contained in:
Arsentiy Milchakov 2020-07-28 18:20:43 +03:00 committed by Anatoliy V. Tomilov
parent af17502388
commit c0a8b7956c
2 changed files with 4 additions and 3 deletions

View file

@ -113,7 +113,7 @@ void FillResults(HotelsMapping<T> && hotelsMapping, booking::HotelsWithExtras &&
auto info = cache.Get(hotel.GetHotelId());
if (info.m_status == Cache::HotelStatus::Available)
passedInserter(std::move(hotel.GetMappedValue()), std::move(*hotel.GetExtras()));
passedInserter(std::move(hotel.GetMappedValue()), std::move(*info.m_extras));
else if (info.m_status == Cache::HotelStatus::Unavailable)
filteredOutInserter(std::move(hotel.GetMappedValue()));

View file

@ -387,10 +387,11 @@ void SearchAPI::FilterAllHotelsInViewport(m2::RectD const & viewport,
return base::ControlFlow::Continue;
});
ASSERT(std::is_sorted(featureIds.cbegin(), featureIds.cend()), ());
if (featureIds.size() <= kMaxHotelFeatures)
{
sort(featureIds.begin(), featureIds.end());
m_delegate.FilterHotels(filterTasks, move(featureIds));
}
}
void SearchAPI::EnableIndexingOfBookmarksDescriptions(bool enable)