From bb7ab3c7fa810d384ec24359212b157a28379469 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Wojciech=20Tyczy=C5=84ski?= Date: Mon, 3 Feb 2025 14:26:52 +0100 Subject: [PATCH] fix(PS5): Disable sequence mode in PS5 (#8004) --- lib/util/platform.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/util/platform.js b/lib/util/platform.js index 03e83f0c3e..11a74901d2 100644 --- a/lib/util/platform.js +++ b/lib/util/platform.js @@ -683,7 +683,7 @@ shaka.util.Platform = class { static supportsSequenceMode() { const Platform = shaka.util.Platform; if (Platform.isTizen3() || Platform.isTizen2() || - Platform.isWebOS3() || Platform.isPS4()) { + Platform.isWebOS3() || Platform.isPS4() || Platform.isPS5()) { return false; } return true;