diff --git a/src/components/Player.vue b/src/components/Player.vue index ff2e2a95..555fab18 100644 --- a/src/components/Player.vue +++ b/src/components/Player.vue @@ -210,6 +210,8 @@ export default { const proxyURL = new URL(component.video.proxyUrl); const proxyHost = proxyURL.host; const proxyPath = proxyURL.pathname; + console.log("proxyHost", proxyHost); + console.log("proxyPath", proxyPath); localPlayer.getNetworkingEngine().registerRequestFilter((_type, request) => { const uri = request.uris[0]; @@ -223,6 +225,7 @@ export default { url.searchParams.set("host", url.host); url.host = proxyHost; url.pathname = proxyPath + url.pathname; + console.log("url.pathname", url.pathname); request.uris[0] = url.toString(); } if (url.pathname === proxyPath + "/videoplayback") {