From c7b25784b141a298d8ee5f0d830a29da6e8a3d54 Mon Sep 17 00:00:00 2001 From: Kent Mewhort Date: Mon, 9 Jun 2025 13:05:54 -0400 Subject: [PATCH] Fix WebcamCapture IS_CHANGED signature (#8413) --- comfy_extras/nodes_webcam.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/comfy_extras/nodes_webcam.py b/comfy_extras/nodes_webcam.py index 062b15cf..5bf80b4c 100644 --- a/comfy_extras/nodes_webcam.py +++ b/comfy_extras/nodes_webcam.py @@ -23,6 +23,10 @@ class WebcamCapture(nodes.LoadImage): def load_capture(self, image, **kwargs): return super().load_image(folder_paths.get_annotated_filepath(image)) + @classmethod + def IS_CHANGED(cls, image, width, height, capture_on_queue): + return super().IS_CHANGED(image) + NODE_CLASS_MAPPINGS = { "WebcamCapture": WebcamCapture,