@grfzhl/vue-hls-player 1.1.13 → 1.1.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/VideoPlayer/BasePlayer.vue +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -400,7 +400,7 @@ function prepareVideoPlayer(link) {
|
|
|
400
400
|
init = init || {};
|
|
401
401
|
init.headers = new Headers(init.headers || {});
|
|
402
402
|
// set headers
|
|
403
|
-
for (const [key, value] of Object.entries(props.
|
|
403
|
+
for (const [key, value] of Object.entries(props.additionHeaders)) {
|
|
404
404
|
init.headers.set(key, value);
|
|
405
405
|
}
|
|
406
406
|
return new Request(context.url, init);
|