Parcourir la source

fix: Fix setting machineUid when sending conference-request.

dev1
Boris Grozev il y a 2 ans
Parent
révision
10acace65f
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2
    2
      modules/xmpp/moderator.js

+ 2
- 2
modules/xmpp/moderator.js Voir le fichier

@@ -151,7 +151,7 @@ Moderator.prototype.isSipGatewayEnabled = function() {
151 151
 Moderator.prototype._createConferenceRequest = function() {
152 152
 
153 153
     // Session Id used for authentication
154
-    const { sessionId, machineUID } = Settings;
154
+    const { sessionId } = Settings;
155 155
     const config = this.options;
156 156
     const properties = {};
157 157
 
@@ -176,7 +176,7 @@ Moderator.prototype._createConferenceRequest = function() {
176 176
 
177 177
     const conferenceRequest = {
178 178
         properties,
179
-        machineUid: machineUID,
179
+        machineUid: Settings.machineId,
180 180
         room: this.roomName
181 181
     };
182 182
 

Chargement…
Annuler
Enregistrer