mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2025-12-21 04:10:48 +08:00
fix: missing nodes db problem
This commit is contained in:
parent
15690571e3
commit
962390598a
@ -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.22.1)")
|
print("### Loading: ComfyUI-Manager (V0.22.2)")
|
||||||
|
|
||||||
comfy_ui_required_revision = 1240
|
comfy_ui_required_revision = 1240
|
||||||
comfy_ui_revision = "Unknown"
|
comfy_ui_revision = "Unknown"
|
||||||
|
|||||||
@ -323,8 +323,8 @@ class CustomNodesInstaller extends ComfyDialog {
|
|||||||
const name_to_url = {};
|
const name_to_url = {};
|
||||||
for (const url in mappings) {
|
for (const url in mappings) {
|
||||||
const names = mappings[url];
|
const names = mappings[url];
|
||||||
for(const name in names) {
|
for(const name in names[0]) {
|
||||||
name_to_url[names[name]] = url;
|
name_to_url[names[0][name]] = url;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user