diff --git a/src/webrtc/call.ts b/src/webrtc/call.ts index de81d47c9..6a9a8be76 100644 --- a/src/webrtc/call.ts +++ b/src/webrtc/call.ts @@ -901,6 +901,7 @@ export class MatrixCall extends EventEmitter { * (including if the call is not set up yet). */ isLocalVideoMuted(): boolean { + if (this.type === CallType.Voice) return true; return this.vidMuted; }