diff --git a/modules/UI/videolayout/VideoLayout.js b/modules/UI/videolayout/VideoLayout.js index 33d41a9ce..4f207ba49 100644 --- a/modules/UI/videolayout/VideoLayout.js +++ b/modules/UI/videolayout/VideoLayout.js @@ -432,18 +432,11 @@ const VideoLayout = { * Creates or adds a participant container for the given id and smallVideo. * * @param {JitsiParticipant} user the participant to add - * @param {SmallVideo} smallVideo optional small video instance to add as a - * remote video, if undefined RemoteVideo will be created */ - addParticipantContainer(user, smallVideo) { + addParticipantContainer(user) { const id = user.getId(); - let remoteVideo; + const remoteVideo = new RemoteVideo(user, VideoLayout, eventEmitter); - if (smallVideo) { - remoteVideo = smallVideo; - } else { - remoteVideo = new RemoteVideo(user, VideoLayout, eventEmitter); - } this._setRemoteControlProperties(user, remoteVideo); this.addRemoteVideoContainer(id, remoteVideo);