From 1034b71d92c263ed828d86258e055d30b4926976 Mon Sep 17 00:00:00 2001 From: Gyurix Date: Tue, 17 Sep 2024 17:40:28 +0200 Subject: [PATCH] updates name fix --- manage.html | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/manage.html b/manage.html index 884155e..f1d1f0a 100644 --- a/manage.html +++ b/manage.html @@ -52,7 +52,7 @@
Updates
@@ -152,10 +152,10 @@ function check_updates() { } function get_updates() { - var url = 'scan.php?op=update'; + var url = 'scan.php?op=updates'; jQuery.get(url, function(data) { if (data=="OK") { - setTimeout(check_update, 1000); + setTimeout(check_updates, 1000); } }); } @@ -265,6 +265,7 @@ jQuery(document).ready(function(){ }); jQuery('#update_btn').click(function() { + jQuery('#updates').html('Looking for updates... Please wait...'); get_updates(); });