vg-x07df 1.0.3 → 1.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.cjs CHANGED
@@ -868,18 +868,7 @@ var CallJoinInfoHandler = class extends BaseSocketHandler {
868
868
  }
869
869
  async handle(data) {
870
870
  rtcStore.getState();
871
- const currentSessionId = this.getSessionId();
872
- if (currentSessionId !== data.callId) {
873
- this.logger.error("CallId mismatch in join-info event", {
874
- eventCallId: data.callId,
875
- sessionCallId: currentSessionId
876
- });
877
- pushStaleEventError("call.join-info", "callId mismatch", {
878
- eventCallId: data.callId,
879
- sessionCallId: currentSessionId
880
- });
881
- return;
882
- }
871
+ this.getSessionId();
883
872
  if (this.livekit?.room.state === "connected") {
884
873
  this.logger.warn("Already connected to LiveKit, ignoring join-info", {
885
874
  callId: data.callId,