vani-meeting-server 1.5.3 → 1.5.5
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.
|
@@ -9,7 +9,7 @@ var ConnectionProtocol;
|
|
|
9
9
|
var LogLevel;
|
|
10
10
|
(function (LogLevel) {
|
|
11
11
|
LogLevel[LogLevel["None"] = 4] = "None";
|
|
12
|
-
LogLevel[LogLevel["All"] =
|
|
12
|
+
LogLevel[LogLevel["All"] = -1] = "All";
|
|
13
13
|
LogLevel[LogLevel["Info"] = 2] = "Info";
|
|
14
14
|
LogLevel[LogLevel["Warn"] = 1] = "Warn";
|
|
15
15
|
LogLevel[LogLevel["Error"] = 0] = "Error";
|
|
@@ -285,7 +285,7 @@ class EachSocketConnectionHandler extends BaseSFUWebsocket_1.BaseSFUWebsocket {
|
|
|
285
285
|
}
|
|
286
286
|
if (this.isReconnectionFromUrl || checkIfOldUserExist) {
|
|
287
287
|
//send message for rejoin
|
|
288
|
-
this.redisBroadcastMessageToTopic(this.selfParticipant.roomId, this.preapreClientMessageBody(
|
|
288
|
+
this.redisBroadcastMessageToTopic(this.selfParticipant.roomId, this.preapreClientMessageBody(true, this.selfParticipant, this.preapreWebSocketMessageBody(WebSocketBasicEvents.OnRejoined, { participant: this.selfParticipant })));
|
|
289
289
|
isReconnection = true;
|
|
290
290
|
}
|
|
291
291
|
else {
|