Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
horymury committed Jul 24, 2023
1 parent 72d6da6 commit bdf809b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions react/features/base/tracks/middleware.web.ts
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ MiddlewareRegistry.register(store => next => action => {
}

case CONFERENCE_JOINED: {
_addsetCameraFacingModeListener(action.conference);
_addSetCameraFacingModeListener(action.conference);
break;
}
}
Expand All @@ -142,7 +142,7 @@ MiddlewareRegistry.register(store => next => action => {
* @param {IJitsiConference} conference - The conference.
* @returns {void}
*/
function _addsetCameraFacingModeListener(conference: IJitsiConference) {
function _addSetCameraFacingModeListener(conference: IJitsiConference) {
conference.on(
JitsiConferenceEvents.ENDPOINT_MESSAGE_RECEIVED,
(...args: any) => {
Expand Down

0 comments on commit bdf809b

Please sign in to comment.