vani-meeting-client 0.5.6 → 0.5.7
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.
|
@@ -134,7 +134,10 @@ var CommunicationHandler = /** @class */ (function () {
|
|
|
134
134
|
if (shouldInfrom === void 0) { shouldInfrom = false; }
|
|
135
135
|
var oldParticipant = this.participantByUserId(participant.userId);
|
|
136
136
|
if (oldParticipant) {
|
|
137
|
+
console.log("Old participant", oldParticipant);
|
|
138
|
+
console.log("new participant", participant);
|
|
137
139
|
oldParticipant = Object.assign(oldParticipant, participant);
|
|
140
|
+
console.log("Old participant after update", oldParticipant);
|
|
138
141
|
if (shouldInfrom) {
|
|
139
142
|
this.emitMessageToSource(VaniEvent.OnParticipantDataUpdated, oldParticipant);
|
|
140
143
|
}
|