fix(ui): fix sticky cookie for assist
This commit is contained in:
parent
e3893b92ce
commit
6fdbf16963
5 changed files with 5 additions and 1 deletions
|
|
@ -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.
|
|
@ -180,6 +180,7 @@ export default class Assist {
|
|||
}),
|
||||
},
|
||||
transports: ['websocket',],
|
||||
withCredentials: true,
|
||||
})
|
||||
socket.onAny((...args) => {
|
||||
if (args[0] === 'messages' || args[0] === 'UPDATE_SESSION') {
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue