Skip to content

Commit

Permalink
fix(core): Fix configurable operation id decoding when using uuids (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobfrantz1 authored Oct 27, 2023
1 parent e4d1545 commit 47f606c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/core/src/api/common/configurable-operation-codec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,7 @@ export class ConfigurableOperationCodec {
const decodedIds = ids.map(id => this.idCodecService.decode(id));
arg.value = JSON.stringify(decodedIds);
} else {
const decodedId = this.idCodecService.decode(arg.value);
arg.value = JSON.stringify(decodedId);
arg.value = this.idCodecService.decode(arg.value);
}
}
}
Expand Down

0 comments on commit 47f606c

Please sign in to comment.