Skip to content

Commit f1c513a

Browse files
committed
Fix node reference missed from refactor
1 parent 9c5407f commit f1c513a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[project]
22
name = "comfyui-videohelpersuite"
33
description = "Nodes related to video workflows"
4-
version = "1.7.0"
4+
version = "1.7.1"
55
license = { file = "LICENSE" }
66
dependencies = ["opencv-python", "imageio-ffmpeg"]
77

web/js/VHS.core.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2431,7 +2431,7 @@ api.addEventListener('VHS_latentpreview', ({ detail }) => {
24312431
}
24322432
//While progress is safely cleared on execution completion.
24332433
//Initial progress must be started here to avoid a race condition
2434-
node.progress = 0
2434+
getNodeById(id).progress = 0
24352435
animateInterval = setInterval(() => {
24362436
if (getNodeById(id).progress == undefined) {
24372437
clearTimeout(animateInterval)

0 commit comments

Comments
 (0)