forked from organicmaps/organicmaps
[ios][downloader] removing country from queue and calling completion handler are reordered.
This commit is contained in:
parent
4edf915469
commit
cb8f9f458a
1 changed files with 2 additions and 1 deletions
|
@ -106,8 +106,9 @@ void BackgroundDownloaderAdapter::DownloadFromAnyUrl(CountryId const & countryId
|
|||
}
|
||||
else
|
||||
{
|
||||
m_queue.GetCountryById(countryId).OnDownloadFinished(status);
|
||||
auto const country = m_queue.GetCountryById(countryId);
|
||||
m_queue.Remove(countryId);
|
||||
country.OnDownloadFinished(status);
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue