From 31de39a7a44f1beeea0aac0786760f91737e7be8 Mon Sep 17 00:00:00 2001 From: AHOHNMYC <24810600+AHOHNMYC@users.noreply.github.com> Date: Sun, 17 Apr 2022 04:32:15 +0300 Subject: [PATCH] Remove insecure protocol in embedded view --- assets/js/player.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/assets/js/player.js b/assets/js/player.js index e478fb8f..f4440de1 100644 --- a/assets/js/player.js +++ b/assets/js/player.js @@ -751,7 +751,7 @@ if (window.location.pathname.startsWith("/embed/")) { // Create hyperlink for current instance redirect_element = document.createElement("a"); - redirect_element.setAttribute("href", `http://${window.location.host}/watch?v=${window.location.pathname.replace("/embed/","")}`) + redirect_element.setAttribute("href", `//${window.location.host}/watch?v=${window.location.pathname.replace("/embed/","")}`) redirect_element.appendChild(document.createTextNode("Invidious")) watch_on_invidious_button.el().appendChild(redirect_element)