Fix unhandled message "execution_cached"
This commit is contained in:
parent
f5d8aadb22
commit
0c874e604c
|
@ -120,6 +120,9 @@ class ComfyApi extends EventTarget {
|
|||
case "execution_error":
|
||||
this.dispatchEvent(new CustomEvent("execution_error", { detail: msg.data }));
|
||||
break;
|
||||
case "execution_cached":
|
||||
this.dispatchEvent(new CustomEvent("execution_cached", { detail: msg.data }));
|
||||
break;
|
||||
default:
|
||||
if (this.#registered.has(msg.type)) {
|
||||
this.dispatchEvent(new CustomEvent(msg.type, { detail: msg.data }));
|
||||
|
|
Loading…
Reference in New Issue