From 127bfba135a8ebe9a9ae3090734fc9dd502e6bfe Mon Sep 17 00:00:00 2001 From: Ozzie Isaacs Date: Mon, 1 Feb 2021 18:59:50 +0100 Subject: [PATCH] fix wrong path in get_update_status js function --- cps/static/js/main.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cps/static/js/main.js b/cps/static/js/main.js index fe617763..e0f2dfe7 100644 --- a/cps/static/js/main.js +++ b/cps/static/js/main.js @@ -225,7 +225,7 @@ $(function() { function updateTimer() { $.ajax({ dataType: "json", - url: window.location.pathname + "/get_updater_status", + url: window.location.pathname + "/../../get_updater_status", success: function success(data) { // console.log(data.status); $("#DialogContent").html(updateText[data.status]);