Skip to content

Commit

Permalink
[Backport 2.x] [BUGFIX] Fix integration data reading double escape (#…
Browse files Browse the repository at this point in the history
…1644)

(cherry picked from commit 41b222f)

Signed-off-by: Simeon Widdis <[email protected]>
Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
1 parent 9b385e6 commit e3f428a
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 e3f428a

Please sign in to comment.