diff --git a/android/jni/com/mapswithme/maps/DownloadResourcesLegacyActivity.cpp b/android/jni/com/mapswithme/maps/DownloadResourcesLegacyActivity.cpp index 926665e7ce..f0b9f0942c 100644 --- a/android/jni/com/mapswithme/maps/DownloadResourcesLegacyActivity.cpp +++ b/android/jni/com/mapswithme/maps/DownloadResourcesLegacyActivity.cpp @@ -215,7 +215,7 @@ extern "C" Callback onFinish(std::bind(&DownloadFileFinished, jni::make_global_ref(listener), _1)); Callback onProgress(std::bind(&DownloadFileProgress, jni::make_global_ref(listener), _1)); - g_currentRequest.reset(HttpRequest::PostJson(GetPlatform().ResourcesMetaServerUrl(), curFile.m_fileName, + g_currentRequest.reset(HttpRequest::Get(GetPlatform().MetaServerUrl(), std::bind(&DownloadURLListFinished, _1, onFinish, onProgress))); return ERR_FILE_IN_PROGRESS; } diff --git a/platform/platform.cpp b/platform/platform.cpp index 4c3aec85e8..02761bdaec 100644 --- a/platform/platform.cpp +++ b/platform/platform.cpp @@ -150,11 +150,6 @@ string Platform::ReadPathForFile(string const & file, string searchScope) const "Have been looking in:\n", possiblePaths)); } -string Platform::ResourcesMetaServerUrl() const -{ - return RESOURCES_METASERVER_URL; -} - string Platform::MetaServerUrl() const { return METASERVER_URL; diff --git a/platform/platform.hpp b/platform/platform.hpp index 47bd7109ff..9d1cb9cfb9 100644 --- a/platform/platform.hpp +++ b/platform/platform.hpp @@ -263,7 +263,6 @@ public: /// @return url for clients to download maps //@{ std::string MetaServerUrl() const; - std::string ResourcesMetaServerUrl() const; //@} /// @return JSON-encoded list of urls if metaserver is unreachable diff --git a/private_default.h b/private_default.h index 3a67e19a42..2a6713263e 100644 --- a/private_default.h +++ b/private_default.h @@ -3,7 +3,6 @@ #define OSM_CONSUMER_KEY "zz16eUusTr4TcVhoKQrgOJaRzZAeI2ktbVx6e3yn" #define OSM_CONSUMER_SECRET "7g4XrlhFkiOG1I3Zpqh8ajo94P9cNNXaU2YCMgL7" #define MWM_GEOLOCATION_SERVER "" -#define RESOURCES_METASERVER_URL "" #define METASERVER_URL "" #define DIFF_LIST_URL "" #define DEFAULT_URLS_JSON "[ \"https://cdn.organicmaps.app/\" ]"