Fix wrong language in originalLanguage tag. (#9600)
This commit is contained in:
parent
b9b91cf35a
commit
31e563c9ab
|
@ -6,7 +6,7 @@ ext {
|
|||
extName = 'MangaDex'
|
||||
pkgNameSuffix = 'all.mangadex'
|
||||
extClass = '.MangaDexFactory'
|
||||
extVersionCode = 140
|
||||
extVersionCode = 141
|
||||
isNsfw = true
|
||||
}
|
||||
|
||||
|
|
|
@ -213,10 +213,14 @@ class MangaDexHelper() {
|
|||
"Content rating: " + tempContentRating.capitalize(Locale.US)
|
||||
}
|
||||
|
||||
val dexLocale = Locale.forLanguageTag(lang)
|
||||
|
||||
val nonGenres = listOf(
|
||||
(attr.publicationDemographic ?: "").capitalize(Locale.US),
|
||||
contentRating,
|
||||
Locale(attr.originalLanguage ?: "").displayLanguage
|
||||
Locale(attr.originalLanguage ?: "")
|
||||
.getDisplayLanguage(dexLocale)
|
||||
.capitalize(dexLocale)
|
||||
)
|
||||
|
||||
val authors = mangaDataDto.relationships.filter { relationshipDto ->
|
||||
|
|
Loading…
Reference in New Issue