Browse Source

bugfix: skip update check

pull/52/head
dr.lt.data 1 year ago
parent
commit
d8f9fe7f1e
  1. 2
      __init__.py
  2. 4
      js/comfyui-manager.js

2
__init__.py

@ -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"

4
js/comfyui-manager.js vendored

@ -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…
Cancel
Save