Skip to content

Commit

Permalink
added proxy object workaround (#228)
Browse files Browse the repository at this point in the history
  • Loading branch information
matthme authored Feb 2, 2024
1 parent 49f554c commit de09a6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/app-agent/websocket.ts
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ export class AppAgentWebsocket implements AppAgentClient {
const zomeCallPayload: CallZomeRequest = {
...omit(request, "role_name"),
provenance: this.myPubKey,
cell_id,
cell_id: [cell_id[0], cell_id[1]],
};
return this.appWebsocket.callZome(zomeCallPayload, timeout);
} else if ("cell_id" in request && request.cell_id) {
Expand Down

0 comments on commit de09a6c

Please sign in to comment.