Skip to content

Commit

Permalink
Fix loadGraphData call during restore (#3976)
Browse files Browse the repository at this point in the history
  • Loading branch information
christian-byrne committed Jul 9, 2024
1 parent ade7aa1 commit d160073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/scripts/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
};
Expand Down

0 comments on commit d160073

Please sign in to comment.