Minor fix to renew now function

This commit is contained in:
Toby Chui
2023-06-23 23:22:19 +08:00
parent 23eca5afae
commit 741d3f8de1
2 changed files with 19 additions and 3 deletions

View File

@@ -393,10 +393,12 @@
//Handle the renew now btn click
function renewNow(){
alert("wip");
return
$.get("/api/acme/autoRenew/renewNow", function(data){
alert(data);
if (data.error != undefined){
parent.msgbox(data.error, false, 6000);
}else{
parent.msgbox(data)
}
})
}