@cedarai/session-replay-sdk 0.6.0 → 0.6.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -150,7 +150,7 @@ var Transport = class {
|
|
|
150
150
|
const json = JSON.stringify(payload);
|
|
151
151
|
gzipCompress(json).then((compressed) => {
|
|
152
152
|
if (this.queue.length > 0) {
|
|
153
|
-
this.pendingBeaconBlob = new Blob([compressed], { type: "
|
|
153
|
+
this.pendingBeaconBlob = new Blob([compressed], { type: "text/plain" });
|
|
154
154
|
this.pendingBeaconUrl = `${this.config.serverUrl}/api/ingest?encoding=gzip`;
|
|
155
155
|
}
|
|
156
156
|
}).catch(() => {
|