fix(ios): disables subtitles for none
and empty
track types (#4319)
This commit is contained in:
parent
d757a44bb1
commit
1033c9d4f3
@ -27,7 +27,7 @@ enum RCTPlayerOperations {
|
||||
|
||||
var selectedTrackIndex: Int = RCTVideoUnset
|
||||
|
||||
if type == "disabled" {
|
||||
if (type == "disabled") || (type == "none") || (type == "") {
|
||||
// Select the last text index which is the disabled text track
|
||||
selectedTrackIndex = trackCount - firstTextIndex
|
||||
} else if type == "language" {
|
||||
@ -92,7 +92,7 @@ enum RCTPlayerOperations {
|
||||
return
|
||||
}
|
||||
|
||||
if type == "disabled" {
|
||||
if (type == "disabled") || (type == "none") || (type == "") {
|
||||
// Do nothing. We want to ensure option is nil
|
||||
} else if (type == "language") || (type == "title") {
|
||||
let value = criteria?.value as? String
|
||||
|
Loading…
Reference in New Issue
Block a user