forked from organicmaps/organicmaps
[booking] race on availability cache fix.
This commit is contained in:
parent
44b0969ecb
commit
cf3e035b45
1 changed files with 9 additions and 5 deletions
|
@ -224,11 +224,15 @@ void Filter::FilterAvailability(search::Results const & results,
|
|||
auto const apiCallback =
|
||||
[cb, hotelToResults, availabilityCache](std::vector<std::string> hotelIds) mutable
|
||||
{
|
||||
search::Results results;
|
||||
std::sort(hotelIds.begin(), hotelIds.end());
|
||||
UpdateCache(hotelToResults, hotelIds, *availabilityCache);
|
||||
FillResults(std::move(hotelToResults), hotelIds, *availabilityCache, results);
|
||||
cb(results);
|
||||
GetPlatform().RunTask(Platform::Thread::File,
|
||||
[cb, hotelToResults, availabilityCache, hotelIds]() mutable
|
||||
{
|
||||
search::Results results;
|
||||
std::sort(hotelIds.begin(), hotelIds.end());
|
||||
UpdateCache(hotelToResults, hotelIds, *availabilityCache);
|
||||
FillResults(std::move(hotelToResults), hotelIds, *availabilityCache, results);
|
||||
cb(results);
|
||||
});
|
||||
};
|
||||
|
||||
m_api.GetHotelAvailability(m_currentParams, apiCallback);
|
||||
|
|
Loading…
Add table
Reference in a new issue