mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-10 09:19:01 +00:00
Fixed: Wrong comparison
This commit is contained in:
parent
9e3db2029d
commit
45fb738e8a
1 changed files with 1 additions and 1 deletions
|
@ -1919,7 +1919,7 @@ class CAHOpenURL : public IActionHandler
|
|||
if (pos_lang != string::npos)
|
||||
pos_lang = url.find("=en#");
|
||||
|
||||
if (pos_lang != string::npos)
|
||||
if (pos_lang == string::npos)
|
||||
url.replace(pos_lang + 1, 2, ClientCfg.getHtmlLanguageCode());
|
||||
|
||||
// append language
|
||||
|
|
Loading…
Reference in a new issue