瀏覽代碼

fix: Fix setting machineUid when sending conference-request.

tags/v0.0.2
Boris Grozev 2 年之前
父節點
當前提交
10acace65f
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. 2
    2
      modules/xmpp/moderator.js

+ 2
- 2
modules/xmpp/moderator.js 查看文件

@@ -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
 

Loading…
取消
儲存