Quellcode durchsuchen

Fixes some issues with the tests

master
hristoterezov vor 10 Jahren
Ursprung
Commit
71a56e13d9
2 geänderte Dateien mit 12 neuen und 0 gelöschten Zeilen
  1. 6
    0
      libs/app.bundle.js
  2. 6
    0
      modules/xmpp/xmpp.js

+ 6
- 0
libs/app.bundle.js Datei anzeigen

@@ -16279,6 +16279,12 @@ var XMPP = {
16279 16279
         if(!connection)
16280 16280
             return null;
16281 16281
         return connection.emuc.ssrc2jid[ssrc];
16282
+    },
16283
+    getMUCJoined: function () {
16284
+        return connection.emuc.joined;
16285
+    },
16286
+    getSessions: function () {
16287
+        return connection.jingle.sessions;
16282 16288
     }
16283 16289
 
16284 16290
 };

+ 6
- 0
modules/xmpp/xmpp.js Datei anzeigen

@@ -431,6 +431,12 @@ var XMPP = {
431 431
         if(!connection)
432 432
             return null;
433 433
         return connection.emuc.ssrc2jid[ssrc];
434
+    },
435
+    getMUCJoined: function () {
436
+        return connection.emuc.joined;
437
+    },
438
+    getSessions: function () {
439
+        return connection.jingle.sessions;
434 440
     }
435 441
 
436 442
 };

Laden…
Abbrechen
Speichern