Supress frontend exception on unhandled message type (#4078)

* Supress frontend exception on unhandled message type

* nit
main
Chenlei Hu 7 months ago committed by GitHub
parent f836e69346
commit 6045ed31f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -136,6 +136,9 @@ class ComfyApi extends EventTarget {
case "execution_start":
this.dispatchEvent(new CustomEvent("execution_start", { detail: msg.data }));
break;
case "execution_success":
this.dispatchEvent(new CustomEvent("execution_success", { detail: msg.data }));
break;
case "execution_error":
this.dispatchEvent(new CustomEvent("execution_error", { detail: msg.data }));
break;

Loading…
Cancel
Save