livekit-client 1.15.11 → 1.15.12
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "livekit-client",
|
3
|
-
"version": "1.15.
|
3
|
+
"version": "1.15.12",
|
4
4
|
"description": "JavaScript/TypeScript client SDK for LiveKit",
|
5
5
|
"main": "./dist/livekit-client.umd.js",
|
6
6
|
"unpkg": "./dist/livekit-client.umd.js",
|
@@ -95,7 +95,7 @@
|
|
95
95
|
"deploy": "gh-pages -d example/dist",
|
96
96
|
"format": "prettier --write src example/sample.ts",
|
97
97
|
"format:check": "prettier --check src",
|
98
|
-
"ci:publish": "pnpm build && pnpm compat && changeset publish",
|
98
|
+
"ci:publish": "pnpm build && pnpm compat && changeset publish --tag legacy",
|
99
99
|
"downlevel-dts": "downlevel-dts ./dist/ ./dist/ts4.2 --to=4.2",
|
100
100
|
"compat": "eslint --no-eslintrc --config ./.eslintrc.dist.cjs ./dist/livekit-client.umd.js",
|
101
101
|
"size-limit": "size-limit"
|
@@ -73,7 +73,7 @@ export class PCTransportManager {
|
|
73
73
|
this.isSubscriberConnectionRequired = subscriberPrimary;
|
74
74
|
const googConstraints = { optional: [{ googDscp: true }] };
|
75
75
|
this.publisher = new PCTransport(rtcConfig, googConstraints, loggerOptions);
|
76
|
-
this.subscriber = new PCTransport(rtcConfig, loggerOptions);
|
76
|
+
this.subscriber = new PCTransport(rtcConfig, undefined, loggerOptions);
|
77
77
|
|
78
78
|
this.publisher.onConnectionStateChange = this.updateState;
|
79
79
|
this.subscriber.onConnectionStateChange = this.updateState;
|