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 a4180ae commit 6d47b7bCopy full SHA for 6d47b7b
client/packages/tailchat-client-sdk/src/openapi/client/ws.ts
@@ -10,7 +10,7 @@ export class TailchatWsClient extends TailchatBaseClient {
10
public url: string,
11
public appId: string,
12
public appSecret: string,
13
- public useMsgpack: boolean = true
+ public disableMsgpack: boolean = false
14
) {
15
super(url, appId, appSecret);
16
}
@@ -26,7 +26,7 @@ export class TailchatWsClient extends TailchatBaseClient {
26
token,
27
},
28
forceNew: true,
29
- parser: this.useMsgpack ? msgpackParser : undefined,
+ parser: this.disableMsgpack ? undefined : msgpackParser,
30
}));
31
32
socket.once('connect', () => {
0 commit comments