Skip to content

Commit 02a29a0

Browse files
authored
fix(HLS): Fix HLS live playback on older Webkit STBs (#8325)
Fixes #8324
1 parent d9b0e85 commit 02a29a0

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

lib/util/platform.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -655,6 +655,11 @@ shaka.util.Platform = class {
655655
Platform.isWebOS3() || Platform.isPS4() || Platform.isPS5()) {
656656
return false;
657657
}
658+
// See: https://bugs.webkit.org/show_bug.cgi?id=210341
659+
const safariVersion = Platform.safariVersion();
660+
if (Platform.isWebkitSTB() && safariVersion != null && safariVersion < 15) {
661+
return false;
662+
}
658663
return true;
659664
}
660665

0 commit comments

Comments
 (0)