mirror of
https://github.com/comfyanonymous/ComfyUI.git
synced 2025-01-11 10:25:16 +00:00
Merge branch 'master' of https://github.com/ssitu/ComfyUI
This commit is contained in:
commit
74297f5f9d
@ -120,6 +120,9 @@ class ComfyApi extends EventTarget {
|
|||||||
case "execution_error":
|
case "execution_error":
|
||||||
this.dispatchEvent(new CustomEvent("execution_error", { detail: msg.data }));
|
this.dispatchEvent(new CustomEvent("execution_error", { detail: msg.data }));
|
||||||
break;
|
break;
|
||||||
|
case "execution_cached":
|
||||||
|
this.dispatchEvent(new CustomEvent("execution_cached", { detail: msg.data }));
|
||||||
|
break;
|
||||||
default:
|
default:
|
||||||
if (this.#registered.has(msg.type)) {
|
if (this.#registered.has(msg.type)) {
|
||||||
this.dispatchEvent(new CustomEvent(msg.type, { detail: msg.data }));
|
this.dispatchEvent(new CustomEvent(msg.type, { detail: msg.data }));
|
||||||
|
Loading…
Reference in New Issue
Block a user