Merge pull request #265 from AustinMroz/main

Check that VHS_VideoCombine preview exists
This commit is contained in:
Dr.Lt.Data 2023-12-25 14:30:39 +09:00 committed by GitHub
commit 9c86f62b91
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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;
}