do not add local to xhr when in videoplayback

This commit is contained in:
Andrew Zhao 2020-12-29 17:58:24 -05:00
parent a06dfaf82a
commit ac0ed14eae
1 changed files with 1 additions and 1 deletions

View File

@ -42,7 +42,7 @@ var shareOptions = {
}
videojs.Hls.xhr.beforeRequest = function(options) {
if (options.uri.indexOf('local=true') === -1) {
if (options.uri.indexOf('videoplayback') === -1 && options.uri.indexOf('local=true') === -1) {
options.uri = options.uri + '?local=true';
}
return options;