Skip to content

Commit

Permalink
Fix integration data reading double escape
Browse files Browse the repository at this point in the history
Signed-off-by: Simeon Widdis <sawiddis@amazon.com>
  • Loading branch information
Swiddis committed Mar 27, 2024
1 parent 95efadd commit 311dce9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ export class IntegrationReader {
}
return {
ok: true,
value: { ...asset, data: JSON.stringify(maybeBuffer.value.toString('utf8')) },
value: { ...asset, data: maybeBuffer.value.toString('utf8') },
};
}
}
Expand Down

0 comments on commit 311dce9

Please sign in to comment.