Skip to content

Commit

Permalink
fix: test cases
Browse files Browse the repository at this point in the history
  • Loading branch information
arjita-mitra committed May 15, 2023
1 parent 774e430 commit d7e805f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/script/view_model/CallingViewModel.ts
Original file line number Diff line number Diff line change
Expand Up @@ -398,14 +398,14 @@ export class CallingViewModel {
if (conversationEntity.isGroup() && !this.teamState.isConferenceCallingEnabled()) {
this.showRestrictedConferenceCallingModal();
} else {
handleCallAction(conversationEntity, CALL_TYPE.NORMAL);
await handleCallAction(conversationEntity, CALL_TYPE.NORMAL);
}
},
startVideo: async (conversationEntity: Conversation) => {
if (conversationEntity.isGroup() && !this.teamState.isConferenceCallingEnabled()) {
this.showRestrictedConferenceCallingModal();
} else {
handleCallAction(conversationEntity, CALL_TYPE.VIDEO);
await handleCallAction(conversationEntity, CALL_TYPE.VIDEO);
}
},
switchCameraInput: (call: Call, deviceId: string) => {
Expand Down

0 comments on commit d7e805f

Please sign in to comment.