forked from organicmaps/organicmaps
[jni] normalize language for discovery manager
This commit is contained in:
parent
0b21ca1252
commit
6b1ee5db0a
1 changed files with 3 additions and 1 deletions
|
@ -10,6 +10,8 @@
|
|||
|
||||
#include "search/result.hpp"
|
||||
|
||||
#include "platform/preferred_languages.hpp"
|
||||
|
||||
#include <memory>
|
||||
#include <utility>
|
||||
#include <vector>
|
||||
|
@ -149,7 +151,7 @@ Java_com_mapswithme_maps_discovery_DiscoveryManager_nativeDiscover(JNIEnv * env,
|
|||
static auto const langField = env->GetFieldID(paramsClass, "mLang", "Ljava/lang/String;");
|
||||
{
|
||||
auto const lang = static_cast<jstring>(env->GetObjectField(params, langField));
|
||||
string const res = jni::ToNativeString(env, lang);
|
||||
string const res = languages::Normalize(jni::ToNativeString(env, lang));
|
||||
if (!res.empty())
|
||||
p.m_lang = res;
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue