File tree 2 files changed +3
-2
lines changed
2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 19
19
20
20
.vscode
21
21
.vscode /
22
+ .idea /
Original file line number Diff line number Diff line change @@ -216,7 +216,7 @@ export class GroupCall extends TypedEventEmitter<
216
216
public type : GroupCallType ,
217
217
public isPtt : boolean ,
218
218
public intent : GroupCallIntent ,
219
- public readonly initCallWithoutVideoAndAudio : boolean ,
219
+ public readonly allowCallWithoutVideoAndAudio : boolean ,
220
220
groupCallId ?: string ,
221
221
private dataChannelsEnabled ?: boolean ,
222
222
private dataChannelOptions ?: IGroupCallDataChannelOptions ,
@@ -378,7 +378,7 @@ export class GroupCall extends TypedEventEmitter<
378
378
// If is allowed to join a call without a media stream, then we
379
379
// don't throw an error here. But we need an empty Local Feed to establish
380
380
// a connection later.
381
- if ( this . initCallWithoutVideoAndAudio ) {
381
+ if ( this . allowCallWithoutVideoAndAudio ) {
382
382
stream = new MediaStream ( ) ;
383
383
} else {
384
384
this . state = GroupCallState . LocalCallFeedUninitialized ;
You can’t perform that action at this time.
0 commit comments