From 2143540d451c879802f2e16dbd4d3444272ff27b Mon Sep 17 00:00:00 2001 From: Patrick Burns Date: Thu, 2 Jan 2025 19:01:58 -0600 Subject: [PATCH] changed the migrate and dxcc urls in the installer to point to the same host that the user navigated to --- install/run.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install/run.php b/install/run.php index 6cb1879d3..f98dd537e 100644 --- a/install/run.php +++ b/install/run.php @@ -268,7 +268,7 @@ return new Promise((resolve, reject) => { $.ajax({ - url: "" + "index.php/migrate", + url: `${window.location.origin}/index.php/migrate`, dataType: 'json', success: async function(response) { if (response.status == 'success') { @@ -297,7 +297,7 @@ return new Promise((resolve, reject) => { $.ajax({ - url: "" + "index.php/update/dxcc", + url: url: `${window.location.origin}/index.php/update/dxcc`, success: async function(response) { if (response == 'success') { running(field, false);