File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -1209,7 +1209,7 @@ export class MatrixCall extends EventEmitter {
12091209 setTracksEnabled ( this . localUsermediaStream . getVideoTracks ( ) , ! vidShouldBeMuted ) ;
12101210 }
12111211
1212- private gotCallFeedsForInvite ( callFeeds : CallFeed [ ] , requestScreenshareFeed = false ) : void {
1212+ private gotCallFeedsForInvite ( callFeeds : CallFeed [ ] ) : void {
12131213 if ( this . successor ) {
12141214 this . successor . gotCallFeedsForAnswer ( callFeeds ) ;
12151215 return ;
@@ -2083,7 +2083,7 @@ export class MatrixCall extends EventEmitter {
20832083 * @throws if you have not specified a listener for 'error' events.
20842084 * @throws if have passed audio=false.
20852085 */
2086- public async placeCallWithCallFeeds ( callFeeds : CallFeed [ ] , requestScreenshareFeed = false ) : Promise < void > {
2086+ public async placeCallWithCallFeeds ( callFeeds : CallFeed [ ] ) : Promise < void > {
20872087 this . checkForErrorListener ( ) ;
20882088 this . direction = CallDirection . Outbound ;
20892089
@@ -2100,7 +2100,7 @@ export class MatrixCall extends EventEmitter {
21002100 // create the peer connection now so it can be gathering candidates while we get user
21012101 // media (assuming a candidate pool size is configured)
21022102 this . peerConn = this . createPeerConnection ( ) ;
2103- this . gotCallFeedsForInvite ( callFeeds , requestScreenshareFeed ) ;
2103+ this . gotCallFeedsForInvite ( callFeeds ) ;
21042104 }
21052105
21062106 private createPeerConnection ( ) : RTCPeerConnection {
You can’t perform that action at this time.
0 commit comments