forked from organicmaps/organicmaps-tmp
[search] Move UpdateResults from PreRanker::Finish to Geocoder::GoImpl to avoid uncaught CancelException.
This commit is contained in:
parent
65dfde46a3
commit
624ad39116
3 changed files with 2 additions and 4 deletions
|
@ -570,6 +570,7 @@ void Geocoder::GoImpl(vector<shared_ptr<MwmInfo>> & infos, bool inViewport)
|
|||
|
||||
// Iterates through all alive mwms and performs geocoding.
|
||||
ForEachCountry(infos, processCountry);
|
||||
m_preRanker.UpdateResults(true /* lastUpdate */);
|
||||
}
|
||||
|
||||
void Geocoder::InitBaseContext(BaseContext & ctx)
|
||||
|
|
|
@ -68,9 +68,6 @@ void PreRanker::Init(Params const & params)
|
|||
|
||||
void PreRanker::Finish(bool cancelled)
|
||||
{
|
||||
if (!cancelled)
|
||||
UpdateResults(true /* lastUpdate */);
|
||||
|
||||
m_ranker.Finish(cancelled);
|
||||
}
|
||||
|
||||
|
|
|
@ -511,7 +511,7 @@ void Ranker::Init(Params const & params, Geocoder::Params const & geocoderParams
|
|||
|
||||
void Ranker::Finish(bool cancelled)
|
||||
{
|
||||
// The results have been updated by PreRanker.
|
||||
// The results should be updated by Geocoder before Finish call.
|
||||
m_emitter.Finish(cancelled);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue