Supress frontend exception on unhandled message type (#4078)

* Supress frontend exception on unhandled message type

* nit
This commit is contained in:
Chenlei Hu 2024-07-21 21:15:01 -04:00 committed by GitHub
parent f836e69346
commit 6045ed31f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -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;