forked from organicmaps/organicmaps
[platform] Remove RESOURCES_METASERVER_URL artifact
Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
parent
d88ff6e9b5
commit
9c2d9205f6
4 changed files with 1 additions and 8 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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/\" ]"
|
||||
|
|
Loading…
Add table
Reference in a new issue