From cb8f9f458a679377d6bf291ba245520132cf5816 Mon Sep 17 00:00:00 2001 From: Arsentiy Milchakov Date: Thu, 26 Nov 2020 15:16:23 +0300 Subject: [PATCH] [ios][downloader] removing country from queue and calling completion handler are reordered. --- storage/background_downloading/downloader_adapter_ios.mm | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/storage/background_downloading/downloader_adapter_ios.mm b/storage/background_downloading/downloader_adapter_ios.mm index cff7092a21..5cc6a76b77 100644 --- a/storage/background_downloading/downloader_adapter_ios.mm +++ b/storage/background_downloading/downloader_adapter_ios.mm @@ -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); } };