From 5809babed89b3c87ea1efb9095052cca7b05e165 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juli=C3=A1n=20Obispo?= Date: Mon, 19 Sep 2022 14:46:35 +0200 Subject: [PATCH] remove tizen from requiresEncryptionInfoInAllInitSegments function --- 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 f29401e8e1..1dce79c8c3 100644 --- a/lib/util/platform.js +++ b/lib/util/platform.js @@ -316,7 +316,7 @@ shaka.util.Platform = class { */ static requiresEncryptionInfoInAllInitSegments() { const Platform = shaka.util.Platform; - return Platform.isTizen() || Platform.isXboxOne(); + return Platform.isXboxOne(); } };