fix(ui): fix sticky cookie for assist

This commit is contained in:
nick-delirium 2023-10-25 15:18:42 +02:00
parent e3893b92ce
commit 6fdbf16963
5 changed files with 5 additions and 1 deletions

View file

@ -158,6 +158,7 @@ export default class AssistManager {
const urlObject = new URL(window.env.API_EDP || window.location.origin) // does it handle ssl automatically?
const socket: Socket = this.socket = io(urlObject.origin, {
withCredentials: true,
multiplex: true,
path: '/ws-assist/socket',
auth: {

Binary file not shown.

View file

@ -180,6 +180,7 @@ export default class Assist {
}),
},
transports: ['websocket',],
withCredentials: true,
})
socket.onAny((...args) => {
if (args[0] === 'messages' || args[0] === 'UPDATE_SESSION') {

View file

@ -2,6 +2,8 @@
- networkRequest message changed to include `TransferredBodySize`
- tracker now attempts to create proxy for beacon api as well (if its in scope)
- safe wrapper for angular apps
- better browser lag handling
# 9.0.11

View file

@ -1,7 +1,7 @@
{
"name": "@openreplay/tracker",
"description": "The OpenReplay tracker main package",
"version": "10.0.1-1",
"version": "10.0.0",
"keywords": [
"logging",
"replay"