We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a91b02a commit bd1bb06Copy full SHA for bd1bb06
packages/replay/src/util/createReplayEnvelope.ts
@@ -21,7 +21,8 @@ export function createReplayEnvelope(
21
// If string then we need to encode to UTF8, otherwise will have
22
// wrong size. TextEncoder has similar browser support to
23
// MutationObserver, although it does not accept IE11.
24
- length: typeof recordingData === 'string' ? new TextEncoder().encode(recordingData).length : recordingData.length,
+ length:
25
+ typeof recordingData === 'string' ? new TextEncoder().encode(recordingData).length : recordingData.length,
26
},
27
recordingData,
28
],
0 commit comments