Unverified Commit 7c5fa7f4 authored by Chenlei Hu's avatar Chenlei Hu Committed by GitHub
Browse files

Fix loadGraphData func call (#3918)

parent 521421f5
...@@ -2314,14 +2314,14 @@ export class ComfyApp { ...@@ -2314,14 +2314,14 @@ export class ComfyApp {
} else if(this.isApiJson(jsonContent)) { } else if(this.isApiJson(jsonContent)) {
this.loadApiJson(jsonContent, fileName); this.loadApiJson(jsonContent, fileName);
} else { } else {
await this.loadGraphData(jsonContent, true, fileName); await this.loadGraphData(jsonContent, true, true, fileName);
} }
}; };
reader.readAsText(file); reader.readAsText(file);
} else if (file.name?.endsWith(".latent") || file.name?.endsWith(".safetensors")) { } else if (file.name?.endsWith(".latent") || file.name?.endsWith(".safetensors")) {
const info = await getLatentMetadata(file); const info = await getLatentMetadata(file);
if (info.workflow) { if (info.workflow) {
await this.loadGraphData(JSON.parse(info.workflow), true, fileName); await this.loadGraphData(JSON.parse(info.workflow), true, true, fileName);
} else if (info.prompt) { } else if (info.prompt) {
this.loadApiJson(JSON.parse(info.prompt)); this.loadApiJson(JSON.parse(info.prompt));
} else { } else {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment