vani-meeting-client-native 0.3.7-beta4 → 0.3.7-beta5
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.
|
@@ -178,7 +178,7 @@ var WebrtcHandler = /** @class */ (function (_super) {
|
|
|
178
178
|
}
|
|
179
179
|
});
|
|
180
180
|
rtcConnection.addEventListener('iceconnectionstatechange', function (event) {
|
|
181
|
-
_this.printLogIfRequired("iceconnectionstatechange", event, remoteParticipant);
|
|
181
|
+
_this.printLogIfRequired("iceconnectionstatechange", rtcConnection.iceConnectionState, event, remoteParticipant);
|
|
182
182
|
});
|
|
183
183
|
rtcConnection.addEventListener('connectionstatechange', function (event) {
|
|
184
184
|
_this.printLogIfRequired("connectionstatechange", event, rtcConnection.connectionState);
|
|
@@ -187,7 +187,6 @@ var WebrtcHandler = /** @class */ (function (_super) {
|
|
|
187
187
|
_this.startSendTrackToPartiipant(remoteParticipant);
|
|
188
188
|
}
|
|
189
189
|
});
|
|
190
|
-
rtcConnection.addEventListener("");
|
|
191
190
|
rtcConnection.addEventListener("track", function (onRemoteTrack) {
|
|
192
191
|
var _a, _b;
|
|
193
192
|
_this.printLogIfRequired("On New Track Remote", onRemoteTrack);
|
|
@@ -283,7 +282,7 @@ var WebrtcHandler = /** @class */ (function (_super) {
|
|
|
283
282
|
};
|
|
284
283
|
WebrtcHandler.prototype.onSocketMessage = function (websocketCallHandler) {
|
|
285
284
|
var _a;
|
|
286
|
-
|
|
285
|
+
this.printLogIfRequired("websocketCallHandler", websocketCallHandler);
|
|
287
286
|
var data = websocketCallHandler.data;
|
|
288
287
|
if (websocketCallHandler.data.message) {
|
|
289
288
|
data = websocketCallHandler.data.message;
|