mirror of
https://gitea.invidious.io/iv-org/invidious.git
synced 2024-08-15 00:53:41 +00:00
Merge pull request #1619 from tenpura-shrimp/ignorevideoplayback
do not add local to xhr when in videoplayback
This commit is contained in:
commit
c7e65ce795
1 changed files with 1 additions and 1 deletions
|
@ -42,7 +42,7 @@ var shareOptions = {
|
||||||
}
|
}
|
||||||
|
|
||||||
videojs.Hls.xhr.beforeRequest = function(options) {
|
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';
|
options.uri = options.uri + '?local=true';
|
||||||
}
|
}
|
||||||
return options;
|
return options;
|
||||||
|
|
Loading…
Reference in a new issue