mirror of
https://git.datalinker.icu/ltdrdata/ComfyUI-Manager
synced 2025-12-14 16:44:27 +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
|
from torchvision.datasets.utils import download_url
|
||||||
|
|
||||||
# ensure .js
|
# ensure .js
|
||||||
print("### Loading: ComfyUI-Manager (V0.18)")
|
print("### Loading: ComfyUI-Manager (V0.18.1)")
|
||||||
|
|
||||||
comfy_ui_required_revision = 1240
|
comfy_ui_required_revision = 1240
|
||||||
comfy_ui_revision = "Unknown"
|
comfy_ui_revision = "Unknown"
|
||||||
|
|||||||
@ -39,7 +39,7 @@ async function getCustomNodes() {
|
|||||||
mode = "local";
|
mode = "local";
|
||||||
|
|
||||||
var skip_update = "";
|
var skip_update = "";
|
||||||
if(ManagerMenuDialog.instance.local_mode_checkbox.checked)
|
if(ManagerMenuDialog.instance.update_check_checkbox.checked)
|
||||||
skip_update = "&skip_update=true";
|
skip_update = "&skip_update=true";
|
||||||
|
|
||||||
const response = await api.fetchApi(`/customnode/getlist?mode=${mode}${skip_update}`);
|
const response = await api.fetchApi(`/customnode/getlist?mode=${mode}${skip_update}`);
|
||||||
@ -54,7 +54,7 @@ async function getAlterList() {
|
|||||||
mode = "local";
|
mode = "local";
|
||||||
|
|
||||||
var skip_update = "";
|
var skip_update = "";
|
||||||
if(ManagerMenuDialog.instance.local_mode_checkbox.checked)
|
if(ManagerMenuDialog.instance.update_check_checkbox.checked)
|
||||||
skip_update = "&skip_update=true";
|
skip_update = "&skip_update=true";
|
||||||
|
|
||||||
const response = await api.fetchApi(`/alternatives/getlist?mode=${mode}${skip_update}`);
|
const response = await api.fetchApi(`/alternatives/getlist?mode=${mode}${skip_update}`);
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user