[metaserver] Add version to request to metaserver

This commit is contained in:
Ilya Zverev 2015-08-26 10:51:03 +03:00 committed by Alex Zolotarev
parent 1d21db8450
commit 677083266c

View file

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