File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -60,13 +60,6 @@ export default class RNE2EEManager
6060 return this . encryptionEnabled ;
6161 }
6262 get isDataChannelEncryptionEnabled ( ) : boolean {
63- console . log (
64- 'isDataChannelEncryptionEnabled?' ,
65- this . isEnabled ,
66- this . encryptionEnabled ,
67- this . dataChannelEncryptionEnabled ,
68- this . isEnabled && this . dataChannelEncryptionEnabled
69- ) ;
7063 return this . isEnabled && this . dataChannelEncryptionEnabled ;
7164 }
7265
@@ -290,13 +283,11 @@ export default class RNE2EEManager
290283 enabled : boolean ,
291284 participantIdentity : string
292285 ) : void {
293- console . log ( 'setParticipantCryptorEnabled' , enabled , participantIdentity ) ;
294286 if (
295287 this . encryptionEnabled !== enabled &&
296288 participantIdentity === this . room ?. localParticipant . identity
297289 ) {
298290 this . encryptionEnabled = enabled ;
299- console . log ( 'setting encryption enabled to ' , enabled ) ;
300291 this . emit (
301292 EncryptionEvent . ParticipantEncryptionStatusChanged ,
302293 enabled ,
You can’t perform that action at this time.
0 commit comments