From 677083266c10ebffe2bb09f737a54e0a17904f54 Mon Sep 17 00:00:00 2001 From: Ilya Zverev Date: Wed, 26 Aug 2015 10:51:03 +0300 Subject: [PATCH] [metaserver] Add version to request to metaserver --- storage/storage.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/storage/storage.cpp b/storage/storage.cpp index 82657817ab..480ee2073e 100644 --- a/storage/storage.cpp +++ b/storage/storage.cpp @@ -403,7 +403,7 @@ void Storage::DownloadNextFile(QueuedCountry const & country) CountryFile const & countryFile = GetCountryFile(country.GetIndex()); // send Country name for statistics - m_downloader->GetServersList(countryFile.GetNameWithoutExt(), + m_downloader->GetServersList(strings::to_string(GetCurrentDataVersion()) + "/" + countryFile.GetNameWithoutExt(), bind(&Storage::OnServerListDownloaded, this, _1)); }