Skip to content

Commit

Permalink
Fix build failure
Browse files Browse the repository at this point in the history
  • Loading branch information
Jerozgen committed May 14, 2024
1 parent d604bd9 commit 395bbd0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ abstract class LanguageManagerMixin {
})
.findFirst()
.ifPresent(lang -> setSystemLanguage(lang, locale));
else if (count == 1) setSystemLanguage(matchingLanguages.getFirst(), locale);
else if (count == 1) setSystemLanguage(matchingLanguages.get(0), locale);
}
}

Expand Down

0 comments on commit 395bbd0

Please sign in to comment.