update 2025-11-05 16:31:48

This commit is contained in:
kenzok8
2025-11-05 16:31:48 +08:00
parent be56a26afc
commit 08c097cd0a
2 changed files with 3 additions and 3 deletions

View File

@@ -11,7 +11,7 @@ LUCI_DEPENDS:=+luci-lib-xterm +taskd
LUCI_EXTRA_DEPENDS:=taskd (>=1.0.3) LUCI_EXTRA_DEPENDS:=taskd (>=1.0.3)
LUCI_PKGARCH:=all LUCI_PKGARCH:=all
PKG_VERSION:=1.0.24 PKG_VERSION:=1.0.25
PKG_RELEASE:= PKG_RELEASE:=
PKG_MAINTAINER:=jjm2473 <jjm2473@gmail.com> PKG_MAINTAINER:=jjm2473 <jjm2473@gmail.com>

View File

@@ -23,7 +23,7 @@
oReq.onload = function (oEvent) { oReq.onload = function (oEvent) {
if (oReq.status == 403) { if (oReq.status == 403) {
alert($gettext("Lost login status")); alert($gettext("Lost login status"));
location.href = location.href; location.href = location.href.replace(/#.*$/,'');
} else if (oReq.status >= 400) { } else if (oReq.status >= 400) {
reject(oEvent); reject(oEvent);
} else { } else {
@@ -98,7 +98,7 @@
running=false; running=false;
showing=false; showing=false;
del_task(task_id).then(()=>{ del_task(task_id).then(()=>{
location.href = location.href; location.href = location.href.replace(/#.*$/,'');
}); });
} }
return false; return false;