forked from organicmaps/organicmaps
[booking] crash fixes
This commit is contained in:
parent
af17502388
commit
c0a8b7956c
2 changed files with 4 additions and 3 deletions
|
@ -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()));
|
||||
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Add table
Reference in a new issue