bugfix: skip update check

This commit is contained in:
dr.lt.data
2023-08-04 14:06:05 +09:00
parent 1285aaafde
commit d8f9fe7f1e
2 changed files with 3 additions and 3 deletions

View File

@@ -39,7 +39,7 @@ async function getCustomNodes() {
mode = "local";
var skip_update = "";
if(ManagerMenuDialog.instance.local_mode_checkbox.checked)
if(ManagerMenuDialog.instance.update_check_checkbox.checked)
skip_update = "&skip_update=true";
const response = await api.fetchApi(`/customnode/getlist?mode=${mode}${skip_update}`);
@@ -54,7 +54,7 @@ async function getAlterList() {
mode = "local";
var skip_update = "";
if(ManagerMenuDialog.instance.local_mode_checkbox.checked)
if(ManagerMenuDialog.instance.update_check_checkbox.checked)
skip_update = "&skip_update=true";
const response = await api.fetchApi(`/alternatives/getlist?mode=${mode}${skip_update}`);