Skip to content

Commit

Permalink
added workaround for cell_id being a proxy object in Vue
Browse files Browse the repository at this point in the history
  • Loading branch information
matthme committed Jan 30, 2024
1 parent 6e443e0 commit 9f1c287
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 @@ -163,7 +163,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 9f1c287

Please sign in to comment.