From 7fcee35cb1db3c4c14b84b84cf5b8b3798a91e55 Mon Sep 17 00:00:00 2001 From: Fijxu Date: Wed, 19 Feb 2025 01:02:56 -0300 Subject: [PATCH] Revert "fix(player.js): set client side XHR timeout" This reverts commit aff5fbb1aae42ce306c733428f37e5d1118144f4. --- assets/js/player.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/assets/js/player.js b/assets/js/player.js index 485409cf..a1a7d494 100644 --- a/assets/js/player.js +++ b/assets/js/player.js @@ -47,8 +47,6 @@ videojs.Vhs.xhr.beforeRequest = function(options) { if (!options.uri.includes('local=true')) options.uri += '?local=true'; } - // Set XHR timeout because the default is 0 - options.timeout = 30000; return options; };