diff --git a/storage/storage.cpp b/storage/storage.cpp index ee21d5c092..0984dd2683 100644 --- a/storage/storage.cpp +++ b/storage/storage.cpp @@ -702,6 +702,19 @@ void Storage::OnMapFileDownloadFinished(bool success, } OnMapDownloadFinished(countryId, success, queuedCountry.GetInitOptions()); + + // Send stastics to Push Woosh. + if (success) + { + GetPlatform().GetMarketingService().SendPushWooshTag(marketing::kMapLastDownloaded, countryId); + char nowStr[18]{}; + auto const tp = std::chrono::system_clock::from_time_t(time(nullptr)); + tm now = my::GmTime(std::chrono::system_clock::to_time_t(tp)); + strftime(nowStr, sizeof(nowStr), "%Y-%m-%d %H:%M", &now); + GetPlatform().GetMarketingService().SendPushWooshTag(marketing::kMapLastDownloadedTimestamp, + std::string(nowStr)); + } + CorrectJustDownloadedAndQueue(m_queue.begin()); SaveDownloadQueue(); @@ -1560,18 +1573,6 @@ bool Storage::GetUpdateInfo(TCountryId const & countryId, UpdateInfo & updateInf void Storage::CorrectJustDownloadedAndQueue(TQueue::iterator justDownloadedItem) { - // Send stastics to Push Woosh. - { - GetPlatform().GetMarketingService().SendPushWooshTag(marketing::kMapLastDownloaded, - justDownloadedItem->GetCountryId()); - char nowStr[18]{}; - auto const tp = std::chrono::system_clock::from_time_t(time(nullptr)); - tm now = my::GmTime(std::chrono::system_clock::to_time_t(tp)); - strftime(nowStr, sizeof(nowStr), "%Y-%m-%d %H:%M", &now); - GetPlatform().GetMarketingService().SendPushWooshTag(marketing::kMapLastDownloadedTimestamp, - std::string(nowStr)); - } - m_justDownloaded.insert(justDownloadedItem->GetCountryId()); m_queue.erase(justDownloadedItem); if (m_queue.empty())