Merge branch 'master' into av/multiplatform-merge-master

This commit is contained in:
Avently
2023-07-20 20:35:08 +07:00
3 changed files with 2 additions and 3 deletions
@@ -22,8 +22,7 @@ fun Activity.saveAppLocale(pref: SharedPreference<String?>, languageCode: String
fun Activity.applyAppLocale(pref: SharedPreference<String?>) {
// if (Build.VERSION.SDK_INT < Build.VERSION_CODES.TIRAMISU) {
val lang = pref.get()
if (lang == null || lang == Locale.getDefault().language) return
val lang = pref.get() ?: return
applyLocale(Locale.forLanguageTag(lang))
// }
}