From 71a56e13d986f75a511fc9f5fa9e91ec6e1b33d6 Mon Sep 17 00:00:00 2001 From: hristoterezov Date: Mon, 9 Feb 2015 12:21:23 +0200 Subject: [PATCH] Fixes some issues with the tests --- libs/app.bundle.js | 6 ++++++ modules/xmpp/xmpp.js | 6 ++++++ 2 files changed, 12 insertions(+) diff --git a/libs/app.bundle.js b/libs/app.bundle.js index 48754402f..1870e7e9c 100644 --- a/libs/app.bundle.js +++ b/libs/app.bundle.js @@ -16279,6 +16279,12 @@ var XMPP = { if(!connection) return null; return connection.emuc.ssrc2jid[ssrc]; + }, + getMUCJoined: function () { + return connection.emuc.joined; + }, + getSessions: function () { + return connection.jingle.sessions; } }; diff --git a/modules/xmpp/xmpp.js b/modules/xmpp/xmpp.js index 859277f99..194b3c4e5 100644 --- a/modules/xmpp/xmpp.js +++ b/modules/xmpp/xmpp.js @@ -431,6 +431,12 @@ var XMPP = { if(!connection) return null; return connection.emuc.ssrc2jid[ssrc]; + }, + getMUCJoined: function () { + return connection.emuc.joined; + }, + getSessions: function () { + return connection.jingle.sessions; } };