From e6b7a9849f3da4dc1487c755ff1d7a965fc40050 Mon Sep 17 00:00:00 2001 From: trivernis Date: Thu, 27 Jul 2023 18:00:04 +0200 Subject: [PATCH] Fix popup script fetching from local domain --- static/popup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/popup.js b/static/popup.js index 1b24428..3d7eda0 100644 --- a/static/popup.js +++ b/static/popup.js @@ -2,7 +2,7 @@ async function showNoChromiumPopup() { if (localStorage.getItem("no-chromium-popup-shown") != "1") { const divPage = document.createElement("div"); - const response = await fetch("/popup/"); + const response = await fetch("https://no-chromium.org/popup/"); divPage.innerHTML = await response.text(); for (const child of divPage.querySelectorAll("#no-chromium-head > *")) {