Comply w/ coding style
This commit is contained in:
parent
cbc08eb96d
commit
bc8c8c1bb9
|
@ -63,8 +63,10 @@ const ConnectionQualityEvents = JitsiMeetJS.events.connectionQuality;
|
|||
|
||||
const eventEmitter = new EventEmitter();
|
||||
|
||||
let room, connection, localAudio, localVideo,
|
||||
initialAudioMutedState = false, initialVideoMutedState = false;
|
||||
let room;
|
||||
let connection;
|
||||
let localAudio, localVideo;
|
||||
let initialAudioMutedState = false, initialVideoMutedState = false;
|
||||
|
||||
/**
|
||||
* Indicates whether extension external installation is in progress or not.
|
||||
|
@ -832,8 +834,7 @@ export default {
|
|||
*/
|
||||
getParticipantConnectionStatus(id) {
|
||||
let participant = this.getParticipantById(id);
|
||||
return participant
|
||||
? participant.getConnectionStatus() : null;
|
||||
return participant ? participant.getConnectionStatus() : null;
|
||||
},
|
||||
/**
|
||||
* Gets the display name foe the <tt>JitsiParticipant</tt> identified by
|
||||
|
|
Loading…
Reference in New Issue