diff --git a/src/scripts/app.ts b/src/scripts/app.ts index 79591b1a3a..9c1e0a19ef 100644 --- a/src/scripts/app.ts +++ b/src/scripts/app.ts @@ -2699,7 +2699,12 @@ export class ComfyApp { } else if (this.isApiJson(jsonContent)) { this.loadApiJson(jsonContent, fileName) } else { - await this.loadGraphData(JSON.parse(readerResult), true, fileName) + await this.loadGraphData( + JSON.parse(readerResult), + true, + false, + fileName + ) } } reader.readAsText(file)