tracker: add sessId header for assist polling

This commit is contained in:
nick-delirium 2025-03-20 12:13:40 +01:00
parent 048ae0913c
commit 13bd3d9121
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0
4 changed files with 9 additions and 2 deletions

View file

@ -1,3 +1,7 @@
## 11.0.2
- add sessionId header on socket.connect for sticky sessions
## 11.0.1
- fixed rare issue causing videocam feed to be black during calls

View file

@ -1,7 +1,7 @@
{
"name": "@openreplay/tracker-assist",
"description": "Tracker plugin for screen assistance through the WebRTC",
"version": "11.0.1",
"version": "11.0.2",
"keywords": [
"WebRTC",
"assistance",

View file

@ -238,6 +238,9 @@ export default class Assist {
...this.app.getSessionInfo(),
}),
},
extraHeaders: {
sessionId,
},
transports: ['websocket',],
withCredentials: true,
reconnection: true,

View file

@ -1 +1 @@
export const pkgVersion = "11.0.1";
export const pkgVersion = "11.0.2";