Skip to content

Commit

Permalink
Fix type lints
Browse files Browse the repository at this point in the history
  • Loading branch information
robintown committed Apr 27, 2022
1 parent ec03076 commit ffe2ba3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/vector/jitsi/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -412,10 +412,10 @@ function joinConference(audioDevice?: string, videoDevice?: string) {
// otherwise the React SDK will mistakenly think the user turned off
// their video by hand
setTimeout(() => {
if (meetApi) widgetApi.transport.send(ElementWidgetActions.MuteVideo)
if (meetApi) widgetApi.transport.send(ElementWidgetActions.MuteVideo, {})
}, 200);
} else {
widgetApi.transport.send(ElementWidgetActions.UnmuteVideo);
widgetApi.transport.send(ElementWidgetActions.UnmuteVideo, {});
}
});

Expand Down

0 comments on commit ffe2ba3

Please sign in to comment.