android: log a warning if listeners could not be attached

This commit is contained in:
Saúl Ibarra Corretgé 2019-11-08 11:00:14 +01:00 committed by Saúl Ibarra Corretgé
parent f0dcb51915
commit 5b99219f29
1 changed files with 4 additions and 0 deletions

View File

@ -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");
}
}