Parcourir la source

fix on-the-fly auth

master
isymchych il y a 9 ans
Parent
révision
e478a73988
1 fichiers modifiés avec 1 ajouts et 7 suppressions
  1. 1
    7
      modules/UI/authentication/AuthHandler.js

+ 1
- 7
modules/UI/authentication/AuthHandler.js Voir le fichier

@@ -69,13 +69,7 @@ function doXmppAuth (room, lockPassword) {
69 69
                     APP.translation.translateString('connection.GOT_SESSION_ID')
70 70
                 );
71 71
 
72
-                if (room.isJoined()) {
73
-                    // just reallocate focus if already joined
74
-                    room.room.moderator.allocateConferenceFocus();
75
-                } else {
76
-                    // or join
77
-                    room.join(lockPassword);
78
-                }
72
+                room.join(lockPassword);
79 73
 
80 74
                 loginDialog.close();
81 75
             }).catch(function (error, code) {

Chargement…
Annuler
Enregistrer