Fix getPreferredSeason() (again)
fix selection of preferred season for languages other than englishpull/49/head
parent
30a5331bbc
commit
be1c001942
|
@ -226,7 +226,7 @@ data class Seasons(
|
|||
fun getPreferredSeason(local: Locale): Season {
|
||||
return items.firstOrNull { season ->
|
||||
// try to get the the first seasons which matches the preferred local
|
||||
season.slugTitle.endsWith("${local.displayLanguage}-dub", true)
|
||||
season.slugTitle.endsWith("${local.getDisplayLanguage(Locale.ENGLISH)}-dub", true)
|
||||
} ?: items.firstOrNull { season ->
|
||||
// if there is no season with the preferred local, try to find a subbed season
|
||||
season.isSubbed
|
||||
|
|
Loading…
Reference in New Issue