Skip to content

Commit c7b2578

Browse files
authored
Fix WebcamCapture IS_CHANGED signature (comfyanonymous#8413)
1 parent 7f800d0 commit c7b2578

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

comfy_extras/nodes_webcam.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,10 @@ def INPUT_TYPES(s):
2323
def load_capture(self, image, **kwargs):
2424
return super().load_image(folder_paths.get_annotated_filepath(image))
2525

26+
@classmethod
27+
def IS_CHANGED(cls, image, width, height, capture_on_queue):
28+
return super().IS_CHANGED(image)
29+
2630

2731
NODE_CLASS_MAPPINGS = {
2832
"WebcamCapture": WebcamCapture,

0 commit comments

Comments
 (0)