From 613bd250fdd4f274b14f7efdd92977d97c8fdb6c Mon Sep 17 00:00:00 2001 From: Andrea Spacca Date: Wed, 17 Nov 2021 14:23:31 +0100 Subject: [PATCH] add debug print --- src/components/Player.vue | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/components/Player.vue b/src/components/Player.vue index 53e0f2e1..e17bae66 100644 --- a/src/components/Player.vue +++ b/src/components/Player.vue @@ -191,6 +191,9 @@ export default { url.port = proxyURL.port; url.host = proxyURL.host; url.pathname = proxyURL.pathname + url.pathname; + console.log(proxyURL.host); + console.log(url.host); + console.log(proxyURL.pathname); uri = url.toString(); } const contentType = await fetch(uri, { @@ -225,6 +228,9 @@ export default { url.port = proxyURL.port; url.host = proxyURL.host; url.pathname = proxyURL.pathname + url.pathname; + console.log(proxyURL.host); + console.log(url.host); + console.log(proxyURL.pathname); request.uris[0] = url.toString(); } if (url.pathname === proxyURL.pathname + "/videoplayback") {