Pārlūkot izejas kodu

Add extra check before accepting a passed in connection.

No use in using a passed in connection that's not connected.
JC Brand 10 gadi atpakaļ
vecāks
revīzija
bb54874f35
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      converse.js

+ 1 - 1
converse.js

@@ -4530,7 +4530,7 @@
 
 
         this.initConnection = function () {
         this.initConnection = function () {
             var rid, sid, jid;
             var rid, sid, jid;
-            if (this.connection) {
+            if (this.connection && this.connection.connected) {
                 this.onConnected();
                 this.onConnected();
             } else {
             } else {
                 // XXX: it's not yet clear what the order of preference should
                 // XXX: it's not yet clear what the order of preference should