diff --git a/src/webrtc/call.ts b/src/webrtc/call.ts index 4b6c7f013..2d29a6c8d 100644 --- a/src/webrtc/call.ts +++ b/src/webrtc/call.ts @@ -346,7 +346,7 @@ export class MatrixCall extends EventEmitter { * Place a voice call to this room. * @throws If you have not specified a listener for 'error' events. */ - async placeVoiceCall(): Promise { + public async placeVoiceCall(): Promise { logger.debug("placeVoiceCall"); this.checkForErrorListener(); const constraints = getUserMediaContraints(ConstraintsType.Audio); @@ -358,7 +358,7 @@ export class MatrixCall extends EventEmitter { * Place a video call to this room. * @throws If you have not specified a listener for 'error' events. */ - async placeVideoCall(): Promise { + public async placeVideoCall(): Promise { logger.debug("placeVideoCall"); this.checkForErrorListener(); const constraints = getUserMediaContraints(ConstraintsType.Video);