Skip to content

Commit

Permalink
Fix displaying secondary subtitles on Tizen 5
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrylyzo committed Oct 31, 2024
1 parent 3311a14 commit be324cc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/plugins/htmlVideoPlayer/plugin.js
Original file line number Diff line number Diff line change
Expand Up @@ -1355,7 +1355,8 @@ export class HtmlVideoPlayer {
return true;
}

if (browser.web0s) {
// Tizen 5 doesn't support displaying secondary subtitles
if (browser.tizenVersion >= 5 || browser.web0s) {
return true;
}

Expand Down

0 comments on commit be324cc

Please sign in to comment.