mirror of
https://github.com/tachiyomiorg/tachiyomi.git
synced 2024-11-10 11:07:47 +01:00
Avoid invalid locales in language picker (fixes #7950)
We should probably prune the translations though.
This commit is contained in:
parent
1395343f11
commit
877ae041a4
1 changed files with 4 additions and 1 deletions
|
@ -59,7 +59,10 @@ class SettingsGeneralController : SettingsController() {
|
|||
for (i in 0 until parser.attributeCount) {
|
||||
if (parser.getAttributeName(i) == "name") {
|
||||
val langTag = parser.getAttributeValue(i)
|
||||
langs.add(Pair(langTag, LocaleHelper.getDisplayName(langTag)))
|
||||
val displayName = LocaleHelper.getDisplayName(langTag)
|
||||
if (displayName.isNotEmpty()) {
|
||||
langs.add(Pair(langTag, displayName))
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue