mirror of
https://github.com/Comfy-Org/ComfyUI-Manager.git
synced 2025-12-16 01:57:04 +08:00
fix: Issue where the ComfyUI hash difference was not appearing in v2/snapshot/diff.
This commit is contained in:
parent
62da330182
commit
24ca0ab538
@ -40,9 +40,9 @@ def diff_snapshot(a, b):
|
|||||||
}
|
}
|
||||||
|
|
||||||
# check: comfyui
|
# check: comfyui
|
||||||
if a.get('comfyui_version') != b.get('comfyui_version'):
|
if a.get('comfyui') != b.get('comfyui'):
|
||||||
nodepack_diff['changed'].append('comfyui')
|
nodepack_diff['changed'].append('comfyui')
|
||||||
|
|
||||||
# check: cnr nodes
|
# check: cnr nodes
|
||||||
a_cnrs = a.get('cnr_custom_nodes', {})
|
a_cnrs = a.get('cnr_custom_nodes', {})
|
||||||
b_cnrs = b.get('cnr_custom_nodes', {})
|
b_cnrs = b.get('cnr_custom_nodes', {})
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user