Skip to content

Commit

Permalink
Update app/src/main/java/org/openobservatory/ooniprobe/common/Prefere…
Browse files Browse the repository at this point in the history
…nceManager.java

Co-authored-by: Simone Basso <bassosimone@gmail.com>
  • Loading branch information
aanorbel and bassosimone authored Nov 27, 2023
1 parent d70ac7a commit fd849d7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ public String getSettingsLanguage() {
if (language.equals("auto")) {
language = Locale.getDefault().getLanguage();
}
if (new ArrayList<>(Arrays.asList(r.getStringArray(R.array.language_sort_options_values))).contains(language)){
if (new ArrayList<>(Arrays.asList(r.getStringArray(R.array.language_sort_options_values))).contains(language)) {
return language;
}
return "en";
Expand Down

0 comments on commit fd849d7

Please sign in to comment.