Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'platform')
-rw-r--r--platform/platform.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/platform.cpp b/platform/platform.cpp
index 93eb691731..185632e552 100644
--- a/platform/platform.cpp
+++ b/platform/platform.cpp
@@ -28,7 +28,7 @@ string Platform::HashUniqueID(string const & s)
for (size_t i = 0; i < offset; ++i)
xoredHash.push_back(hash[i] ^ hash[i + offset] ^ hash[i + offset * 2] ^ hash[i + offset * 3]);
// and use base64 encoding
- return base64::encode(xoredHash);
+ return base64_for_user_ids::encode(xoredHash);
}
string Platform::ResourcesMetaServerUrl() const