vani-meeting-client 0.8.0 → 0.8.2
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.
|
@@ -278,6 +278,13 @@ var CommunicationHandler = /** @class */ (function () {
|
|
|
278
278
|
}
|
|
279
279
|
});
|
|
280
280
|
}
|
|
281
|
+
else if (data && data.message && data.message.length > 0) {
|
|
282
|
+
data.message.forEach(function (messageDict) {
|
|
283
|
+
if (messageDict.message) {
|
|
284
|
+
oldMessages.push(_this.onMessage(messageDict, false));
|
|
285
|
+
}
|
|
286
|
+
});
|
|
287
|
+
}
|
|
281
288
|
this.emitMessageToSource(VaniEvent.OnOldMessages, oldMessages);
|
|
282
289
|
};
|
|
283
290
|
CommunicationHandler.prototype.onMessage = function (message, shouldInfromSource) {
|