From 601c667d365bd4f5465b6d5868095edf87328205 Mon Sep 17 00:00:00 2001 From: lianbenjamin <79077248+lianbenjamin@users.noreply.github.com> Date: Tue, 21 May 2024 17:33:05 +0300 Subject: [PATCH] fix(FEC-13878): enable hls worker (#218) ### Description of the Changes **the issue:** hls worker is not working. **solution:** remove configuration that disabled the worker. **related PR:** https://github.com/kaltura/kaltura-player-js/pull/776 #### Resolves FEC-13878 --- src/default-config.json | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/default-config.json b/src/default-config.json index 804c76e1..74cbed79 100644 --- a/src/default-config.json +++ b/src/default-config.json @@ -7,8 +7,7 @@ }, "hlsConfig": { "fragLoadingMaxRetry": 4, - "maxMaxBufferLength": 60, - "enableWorker": false + "maxMaxBufferLength": 60 }, "network": {} }