diff --git a/src/index.ts b/src/index.ts index 258185f..c9c893a 100644 --- a/src/index.ts +++ b/src/index.ts @@ -233,18 +233,21 @@ class Message extends Client { switch (data.action) { case "encode": update({ + id: data.id, action: "encode", args: [await this.encoding.encode?.(...data.args), data.args[0]], }); break; case "decode": update({ + id: data.id, action: "decode", args: [await this.encoding.decode?.(...data.args), data.args[0]], }); break; case "preencode": update({ + id: data.id, action: "preencode", args: [ await this.encoding.preencode?.(...data.args),