Skip to content

Commit e5d6b51

Browse files
committed
Fix removal of Video Info output
Previously, link redirection was performed on Load Video and Video Combine to facilitate loading or saving from latents. During this time, extra inputs and outputs were added that were hidden. The extra output was removed, but hiding code was not, which resulted in the next output, video_info, being hidden instead. Bump version
1 parent cf1189a commit e5d6b51

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
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.3.7"
4+
version = "1.3.8"
55
license = { file = "LICENSE" }
66
dependencies = ["opencv-python", "imageio-ffmpeg"]
77

web/js/VHS.core.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,6 @@ function applyVHSAudioLinksFix(nodeType, nodeData, audio_slot) {
473473
})
474474
}
475475
function addVAEOutputToggle(nodeType, nodeData) {
476-
nodeData.output.pop()
477476
chainCallback(nodeType.prototype, "onConnectionsChange", function(contype, slot, iscon, linfo) {
478477
if (contype == LiteGraph.INPUT && slot == 1 && this.inputs[1].type == "VAE") {
479478
if (iscon && linfo) {
@@ -502,7 +501,6 @@ function addVAEOutputToggle(nodeType, nodeData) {
502501
});
503502
}
504503
function addVAEInputToggle(nodeType, nodeData) {
505-
delete nodeData.input.optional["latents"]
506504
chainCallback(nodeType.prototype, "onConnectionsChange", function(contype, slot, iscon, linf) {
507505
if (contype == LiteGraph.INPUT && slot == 3 && this.inputs[3].type == "VAE") {
508506
if (iscon && linf) {

0 commit comments

Comments
 (0)