浏览代码

rn: don't start native call integration multiple times

When you join a conference that needs an authenticated moderator, as a guest, Jitsi Meet will continuously try and connect to the meeting every 5 seconds. Avoid starting the native call integration more than once.

Fixes: https://github.com/jitsi/jitsi-meet/issues/6260
j8
Jon Leren Schøpzinsky 4 年前
父节点
当前提交
8fa41bebb7
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 5 次插入0 次删除
  1. 5
    0
      react/features/mobile/call-integration/middleware.js

+ 5
- 0
react/features/mobile/call-integration/middleware.js 查看文件

@@ -264,6 +264,11 @@ function _conferenceWillJoin({ dispatch, getState }, next, action) {
264 264
     const handle = callHandle || url.toString();
265 265
     const hasVideo = !isVideoMutedByAudioOnly(state);
266 266
 
267
+    // If we already have a callUUID set, don't start a new call.
268
+    if (conference.callUUID) {
269
+        return result;
270
+    }
271
+
267 272
     // When assigning the call UUID, do so in upper case, since iOS will return
268 273
     // it upper cased.
269 274
     conference.callUUID = (callUUID || uuid.v4()).toUpperCase();

正在加载...
取消
保存