Changed: UTF8 detection search if LANG is set but fails to set

This commit is contained in:
aristocratos 2021-09-28 13:08:45 +02:00
parent dc914aa86d
commit 8296c1a8d5

View file

@ -713,10 +713,8 @@ int main(int argc, char **argv) {
//? Try to find and set a UTF-8 locale
if (bool found = false; std::setlocale(LC_ALL, NULL) == NULL or not str_to_upper(s_replace((string)std::setlocale(LC_ALL, NULL), "-", "")).ends_with("UTF8")) {
if (std::getenv("LANG") != NULL and str_to_upper(s_replace((string)std::getenv("LANG"), "-", "")).ends_with("UTF8")) {
if (std::setlocale(LC_ALL, std::getenv("LANG")) != NULL) {
found = true;
}
if (std::getenv("LANG") != NULL and str_to_upper(s_replace((string)std::getenv("LANG"), "-", "")).ends_with("UTF8") and std::setlocale(LC_ALL, std::getenv("LANG")) != NULL) {
found = true;
}
else {
if (setenv("LANG", "", 1) == 0) {