mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2025-12-22 12:50:50 +08:00
fix: message bug again..
This commit is contained in:
parent
263ccec476
commit
ef4e7a0ef0
@ -55,7 +55,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.28.4)")
|
print("### Loading: ComfyUI-Manager (V0.28.5)")
|
||||||
|
|
||||||
comfy_ui_required_revision = 1240
|
comfy_ui_required_revision = 1240
|
||||||
comfy_ui_revision = "Unknown"
|
comfy_ui_revision = "Unknown"
|
||||||
|
|||||||
@ -215,7 +215,7 @@ async function fetchUpdates(update_check_checkbox) {
|
|||||||
|
|
||||||
const response = await api.fetchApi(`/customnode/fetch_updates?mode=${mode}`);
|
const response = await api.fetchApi(`/customnode/fetch_updates?mode=${mode}`);
|
||||||
|
|
||||||
if(response.status != 200 || response.status != 201) {
|
if(response.status != 200 && response.status != 201) {
|
||||||
app.ui.dialog.show('Failed to fetch updates.');
|
app.ui.dialog.show('Failed to fetch updates.');
|
||||||
app.ui.dialog.element.style.zIndex = 9999;
|
app.ui.dialog.element.style.zIndex = 9999;
|
||||||
return false;
|
return false;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user