android: log a warning if listeners could not be attached
This commit is contained in:
parent
f0dcb51915
commit
5b99219f29
|
@ -137,6 +137,8 @@ class AudioDeviceHandlerConnectionService implements
|
|||
RNConnectionService rcs = ReactInstanceManagerHolder.getNativeModule(RNConnectionService.class);
|
||||
if (rcs != null) {
|
||||
rcs.setCallAudioStateListener(this);
|
||||
} else {
|
||||
JitsiMeetLogger.w(TAG + " Couldn't set call audio state listener, module is null");
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -145,6 +147,8 @@ class AudioDeviceHandlerConnectionService implements
|
|||
RNConnectionService rcs = ReactInstanceManagerHolder.getNativeModule(RNConnectionService.class);
|
||||
if (rcs != null) {
|
||||
rcs.setCallAudioStateListener(null);
|
||||
} else {
|
||||
JitsiMeetLogger.w(TAG + " Couldn't set call audio state listener, module is null");
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue