Don't enable webcam on audio call startup (#4602)

This commit is contained in:
nsunderland1 2020-11-02 19:47:18 -05:00 committed by GitHub
parent b8dbd5970d
commit 2373209834
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -130,7 +130,10 @@ export class CallingClass {
});
await this.startDeviceReselectionTimer();
this.enableLocalCamera();
if (isVideoCall) {
this.enableLocalCamera();
}
}
stopCallingLobby(): void {