Uses more meaningful names.
This commit is contained in:
parent
7bb20bb967
commit
4f59dbae65
|
@ -447,12 +447,17 @@ export default {
|
|||
sendFeedback (overallFeedback, detailedFeedback) {
|
||||
return room.sendFeedback (overallFeedback, detailedFeedback);
|
||||
},
|
||||
// used by torture currently
|
||||
isJoined () {
|
||||
/**
|
||||
* Checks whether the MUC is joined.
|
||||
*/
|
||||
isMucJoined () {
|
||||
return this._room
|
||||
&& this._room.isJoined();
|
||||
},
|
||||
getConnectionState () {
|
||||
/**
|
||||
* Returns the ICE connection state of the PeerConnection.
|
||||
*/
|
||||
getIceConnectionState () {
|
||||
return this._room
|
||||
&& this._room.getConnectionState();
|
||||
},
|
||||
|
|
Loading…
Reference in New Issue