Revert "fix(player.js): set client side XHR timeout"

This reverts commit aff5fbb1aa.
This commit is contained in:
Fijxu 2025-02-19 01:02:56 -03:00
parent 99224b9f60
commit 7fcee35cb1
No known key found for this signature in database
GPG Key ID: 32C1DDF333EDA6A4

View File

@ -47,8 +47,6 @@ videojs.Vhs.xhr.beforeRequest = function(options) {
if (!options.uri.includes('local=true')) if (!options.uri.includes('local=true'))
options.uri += '?local=true'; options.uri += '?local=true';
} }
// Set XHR timeout because the default is 0
options.timeout = 30000;
return options; return options;
}; };