Skip to content

Commit

Permalink
Backport pull request #6278 from jellyfin-web/release-10.10.z
Browse files Browse the repository at this point in the history
Fix displaying secondary subtitles on Tizen 5

Original-merge: 2ed3965

Merged-by: thornbill <[email protected]>

Backported-by: Joshua M. Boniface <[email protected]>
  • Loading branch information
dmitrylyzo authored and joshuaboniface committed Nov 3, 2024
1 parent acbb626 commit 4a5c52a
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 4a5c52a

Please sign in to comment.