Fix loadGraphData call during restore (#3976)

main
bymyself 8 months ago committed by GitHub
parent ade7aa1b0c
commit d160073829
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -1599,7 +1599,7 @@ export class ComfyApp {
if (json) {
const workflow = JSON.parse(json);
const workflowName = getStorageValue("Comfy.PreviousWorkflow");
await this.loadGraphData(workflow, true, workflowName);
await this.loadGraphData(workflow, true, true, workflowName);
return true;
}
};

Loading…
Cancel
Save