mirror of
https://git.datalinker.icu/ltdrdata/ComfyUI-Manager
synced 2025-12-09 06:04:31 +08:00
bugfix: skip update check
This commit is contained in:
parent
1285aaafde
commit
d8f9fe7f1e
@ -33,7 +33,7 @@ sys.path.append('../..')
|
||||
from torchvision.datasets.utils import download_url
|
||||
|
||||
# ensure .js
|
||||
print("### Loading: ComfyUI-Manager (V0.18)")
|
||||
print("### Loading: ComfyUI-Manager (V0.18.1)")
|
||||
|
||||
comfy_ui_required_revision = 1240
|
||||
comfy_ui_revision = "Unknown"
|
||||
|
||||
@ -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}`);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user