mirror of
https://github.com/revanced/revanced-manager.git
synced 2025-05-02 14:54:25 +02:00
fix: Use device locale when no preference is set (#2483)
This commit is contained in:
parent
5127c7f599
commit
f79aa9edd7
@ -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 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user