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); } };