From 24ca0ab538a9842ad19f3bf2a67c00cb9475dd73 Mon Sep 17 00:00:00 2001 From: "Dr.Lt.Data" Date: Tue, 29 Jul 2025 23:22:19 +0900 Subject: [PATCH] fix: Issue where the ComfyUI hash difference was not appearing in `v2/snapshot/diff`. --- comfyui_manager/common/snapshot_util.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/comfyui_manager/common/snapshot_util.py b/comfyui_manager/common/snapshot_util.py index b3653fe7..f3f77a0c 100644 --- a/comfyui_manager/common/snapshot_util.py +++ b/comfyui_manager/common/snapshot_util.py @@ -40,9 +40,9 @@ def diff_snapshot(a, b): } # check: comfyui - if a.get('comfyui_version') != b.get('comfyui_version'): + if a.get('comfyui') != b.get('comfyui'): nodepack_diff['changed'].append('comfyui') - + # check: cnr nodes a_cnrs = a.get('cnr_custom_nodes', {}) b_cnrs = b.get('cnr_custom_nodes', {})