forked from organicmaps/organicmaps
call to booking filter processor is disabled when no tasks.
This commit is contained in:
parent
173b1c4245
commit
a646652ae5
3 changed files with 9 additions and 2 deletions
|
@ -110,6 +110,11 @@ public:
|
|||
});
|
||||
}
|
||||
|
||||
bool IsEmpty() const
|
||||
{
|
||||
return m_tasks.empty();
|
||||
}
|
||||
|
||||
void Clear()
|
||||
{
|
||||
m_tasks.clear();
|
||||
|
|
|
@ -24,7 +24,8 @@ void EverywhereSearchCallback::operator()(Results const & results)
|
|||
m_productInfo.push_back(m_delegate.GetProductInfo(results[i]));
|
||||
}
|
||||
|
||||
if (results.IsEndedNormal() && results.GetType() == Results::Type::Hotels)
|
||||
if (results.IsEndedNormal() && results.GetType() == Results::Type::Hotels &&
|
||||
!m_bookingFilterTasks.IsEmpty())
|
||||
{
|
||||
m_delegate.FilterResultsForHotelsQuery(m_bookingFilterTasks, results, false /* inViewport */);
|
||||
}
|
||||
|
|
|
@ -91,7 +91,8 @@ void ViewportSearchCallback::operator()(Results const & results)
|
|||
});
|
||||
}
|
||||
|
||||
if (results.IsEndedNormal() && results.GetType() == Results::Type::Hotels)
|
||||
if (results.IsEndedNormal() && results.GetType() == Results::Type::Hotels &&
|
||||
!m_bookingFilterTasks.IsEmpty())
|
||||
{
|
||||
m_delegate.FilterResultsForHotelsQuery(m_bookingFilterTasks, results, true /* inViewport */);
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue