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; } };