Check that VHS_VideoCombine preview is non-null

This commit is contained in:
Austin Mroz 2023-12-24 21:17:27 -06:00
parent 1f5f58147d
commit d94aed2999

View File

@ -87,7 +87,7 @@ export function getPotentialOutputsAndOutputNodes(nodes) {
const widgetValue = node.widgets[j].value;
const parsedURLVals = widgetValue.params;
if(!parsedURLVals.format.startsWith('image')) {
if(!parsedURLVals.format?.startsWith('image')) {
// video isn't supported format
continue;
}