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 2df2cd2 commit 76df0f2Copy full SHA for 76df0f2
.changeset/cold-bags-dance.md
@@ -0,0 +1,5 @@
1
+---
2
+"livekit-client": patch
3
4
+
5
+fix: ensure signal connect future is reset after disconnecting from room
src/room/participant/LocalParticipant.ts
@@ -260,6 +260,8 @@ export default class LocalParticipant extends Participant {
260
.on(EngineEvent.Disconnected, this.handleDisconnected)
261
.on(EngineEvent.SignalRequestResponse, this.handleSignalRequestResponse)
262
.on(EngineEvent.DataPacketReceived, this.handleDataPacket);
263
264
+ this.signalConnectedFuture = undefined;
265
}
266
267
private handleReconnecting = () => {
0 commit comments