Skip to content

Commit

Permalink
pr fix
Browse files Browse the repository at this point in the history
  • Loading branch information
bdemann committed Jul 12, 2024
1 parent b3c27e5 commit f6c2c8c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/lib/stable/execute_with_candid_serde.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ export function executeWithCandidSerde(
) {
result
.then((result: any) => {
reply({ data: result, idl: returnIdl });
if (!manual) {
reply({ data: result, idl: returnIdl });
}
})
.catch((error: any) => {
handleUncaughtError(error);
Expand Down

0 comments on commit f6c2c8c

Please sign in to comment.