From 26e51002ad0a0111b03d152c2cabb921410e130d Mon Sep 17 00:00:00 2001 From: VladiMihaylenko Date: Fri, 30 Mar 2018 14:55:53 +0300 Subject: [PATCH] Using saved countryId instead of reference. --- storage/storage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/storage.cpp b/storage/storage.cpp index 0025700770..8969f0ceb8 100644 --- a/storage/storage.cpp +++ b/storage/storage.cpp @@ -635,7 +635,7 @@ void Storage::DownloadNextCountryFromQueue() DownloadNextFile(queuedCountry); // New status for the country, "Downloading" - NotifyStatusChangedForHierarchy(queuedCountry.GetCountryId()); + NotifyStatusChangedForHierarchy(countryId); } void Storage::DownloadNextFile(QueuedCountry const & country)