forked from organicmaps/organicmaps
Merge pull request #1984 from Zverik/fix_lang_detect
[platform] Fix language detection on some linux systems
This commit is contained in:
commit
7b095b2cc6
1 changed files with 1 additions and 1 deletions
|
@ -103,7 +103,7 @@ void GetSystemPreferred(vector<string> & languages)
|
|||
#elif defined(OMIM_OS_LINUX)
|
||||
// check environment variables
|
||||
char const * p = getenv("LANGUAGE");
|
||||
if (p) // LANGUAGE can contain several values divided by ':'
|
||||
if (p && strlen(p)) // LANGUAGE can contain several values divided by ':'
|
||||
{
|
||||
string const str(p);
|
||||
strings::SimpleTokenizer iter(str, ":");
|
||||
|
|
Loading…
Add table
Reference in a new issue