Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 84f78bc4 authored by Tom Hsu's avatar Tom Hsu Committed by Android (Google) Code Review
Browse files

Merge "Fix System language option missing and locale region missing issue" into tm-dev

parents 973031b2 cfb04f4c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -114,7 +114,7 @@ public class AppLocalePickerActivity extends SettingsBaseActivity
        if (localeInfo == null || localeInfo.getLocale() == null || localeInfo.isSystemLocale()) {
            setAppDefaultLocale("");
        } else {
            setAppDefaultLocale(localeInfo.getLocale().getLanguage());
            setAppDefaultLocale(localeInfo.getLocale().toLanguageTag());
        }
        finish();
    }