Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
chenpangpang
ComfyUI
Commits
00c1ec49
"web/git@developer.sourcefind.cn:chenpangpang/ComfyUI.git" did not exist on "34030fed925ca6e11863a0c2f85d84303378e312"
Commit
00c1ec49
authored
Mar 29, 2023
by
pythongosssss
Browse files
Fix crash if node is removed mid run
parent
6f72c4c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
web/scripts/app.js
web/scripts/app.js
+1
-1
No files found.
web/scripts/app.js
View file @
00c1ec49
...
...
@@ -618,7 +618,7 @@ class ComfyApp {
api
.
addEventListener
(
"
executed
"
,
({
detail
})
=>
{
this
.
nodeOutputs
[
detail
.
node
]
=
detail
.
output
;
const
node
=
this
.
graph
.
getNodeById
(
detail
.
node
);
if
(
node
.
onExecuted
)
{
if
(
node
?
.
onExecuted
)
{
node
.
onExecuted
(
detail
.
output
);
}
});
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment