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
79ff7d67
"vscode:/vscode.git/clone" did not exist on "18dc13746bdb5cad44e451bfeb21832cd1490e3d"
Commit
79ff7d67
authored
Apr 08, 2023
by
pythongosssss
Browse files
Add error handling around initial load of workflow
parent
ebd7f9bf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
37 additions
and
2 deletions
+37
-2
web/scripts/app.js
web/scripts/app.js
+37
-2
No files found.
web/scripts/app.js
View file @
79ff7d67
import
{
ComfyWidgets
}
from
"
./widgets.js
"
;
import
{
ComfyUI
}
from
"
./ui.js
"
;
import
{
ComfyUI
,
$el
}
from
"
./ui.js
"
;
import
{
api
}
from
"
./api.js
"
;
import
{
defaultGraph
}
from
"
./defaultGraph.js
"
;
import
{
getPngMetadata
,
importA1111
}
from
"
./pnginfo.js
"
;
...
...
@@ -869,7 +869,42 @@ class ComfyApp {
if
(
n
.
type
==
"
T2IAdapterLoader
"
)
n
.
type
=
"
ControlNetLoader
"
;
}
this
.
graph
.
configure
(
graphData
);
try
{
this
.
graph
.
configure
(
graphData
);
}
catch
(
error
)
{
let
errorHint
=
""
;
// Try extracting filename to see if it was caused by an extension
const
filename
=
error
.
fileName
||
(
error
.
stack
||
""
).
match
(
/
\/([\/\w
-_
\.]
+
\.
js
)
:
(\d
*
)
:
(\d
*
)
/
)?.[
1
];
const
pos
=
(
filename
||
""
).
indexOf
(
"
/extensions/
"
);
if
(
pos
>
-
1
)
{
errorHint
=
"
This may be due to the following extension:
"
+
filename
.
substring
(
pos
+
12
);
}
// Show dialog to let the user know something went wrong loading the data
this
.
ui
.
dialog
.
show
(
$el
(
"
div
"
,
[
$el
(
"
p
"
,
{
textContent
:
"
Loading aborted due to error reloading workflow data
"
}),
$el
(
"
pre
"
,
{
style
:
{
padding
:
"
5px
"
,
backgroundColor
:
"
rgba(255,0,0,0.2)
"
},
textContent
:
error
.
toString
(),
}),
$el
(
"
pre
"
,
{
style
:
{
padding
:
"
5px
"
,
color
:
"
#ccc
"
,
fontSize
:
"
10px
"
,
maxHeight
:
"
50vh
"
,
overflow
:
"
auto
"
,
backgroundColor
:
"
rgba(255,0,0,0.2)
"
,
},
textContent
:
error
.
stack
||
"
No stacktrace available
"
,
}),
$el
(
"
span
"
,
{
textContent
:
errorHint
,
style
:
{
fontWeight
:
"
bold
"
}
}),
]).
outerHTML
);
return
;
}
for
(
const
node
of
this
.
graph
.
_nodes
)
{
const
size
=
node
.
computeSize
();
...
...
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