diff --git a/iphone/Maps/Core/Search/MWMSearch.mm b/iphone/Maps/Core/Search/MWMSearch.mm index a93998e686..9428b86ab1 100644 --- a/iphone/Maps/Core/Search/MWMSearch.mm +++ b/iphone/Maps/Core/Search/MWMSearch.mm @@ -67,16 +67,19 @@ using Observers = NSHashTable; // m_onResults [self, timestamp](search::Results results, std::vector productInfo) { + // Store the flag first, because we will make move next. + bool const isEndMarker = results.IsEndMarker(); + if (timestamp == self.lastSearchTimestamp) { + self.suggestionsCount = results.GetSuggestsCount(); self->m_everywhereResults = std::move(results); self->m_productInfo = std::move(productInfo); - self.suggestionsCount = results.GetSuggestsCount(); [self onSearchResultsUpdated]; } - if (results.IsEndMarker()) + if (isEndMarker) self.searchCount -= 1; } };