call to booking filter processor is disabled when no tasks.

This commit is contained in:
Arsentiy Milchakov 2018-07-10 16:26:22 +03:00 committed by Tatiana Yan
parent 173b1c4245
commit a646652ae5
3 changed files with 9 additions and 2 deletions

View file

@ -110,6 +110,11 @@ public:
});
}
bool IsEmpty() const
{
return m_tasks.empty();
}
void Clear()
{
m_tasks.clear();

View file

@ -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 */);
}

View file

@ -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 */);
}