mirror of
https://github.com/ReVanced/revanced-manager.git
synced 2025-08-06 09:39:25 +08:00
fix: Use device locale when no preference is set (#2483)
This commit is contained in:
@ -325,7 +325,13 @@ class ManagerAPI {
|
|||||||
}
|
}
|
||||||
|
|
||||||
String getLocale() {
|
String getLocale() {
|
||||||
return _prefs.getString('locale') ?? 'en';
|
final String? savedLocale = _prefs.getString('locale');
|
||||||
|
if (savedLocale != null && savedLocale.isNotEmpty) {
|
||||||
|
return savedLocale;
|
||||||
|
} else {
|
||||||
|
final Locale deviceLocale = PlatformDispatcher.instance.locale;
|
||||||
|
return deviceLocale.languageCode.isNotEmpty ? deviceLocale.languageCode : 'en';
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
Future<void> setLocale(String value) async {
|
Future<void> setLocale(String value) async {
|
||||||
|
Reference in New Issue
Block a user