1
mirror of https://github.com/comfyanonymous/ComfyUI.git synced 2025-08-02 15:04:50 +08:00

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

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;