Skip to content

Commit

Permalink
Backport pull request jellyfin#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 kevgrig committed Jan 7, 2025
1 parent 9041327 commit 9f00127
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 9f00127

Please sign in to comment.