Fixes some issues with the tests
This commit is contained in:
parent
0f6d0a0439
commit
71a56e13d9
|
@ -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;
|
||||
}
|
||||
|
||||
};
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue