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 97aa77c commit e9a8d98Copy full SHA for e9a8d98
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