|
@@ -137,6 +137,8 @@ class AudioDeviceHandlerConnectionService implements
|
137
|
137
|
RNConnectionService rcs = ReactInstanceManagerHolder.getNativeModule(RNConnectionService.class);
|
138
|
138
|
if (rcs != null) {
|
139
|
139
|
rcs.setCallAudioStateListener(this);
|
|
140
|
+ } else {
|
|
141
|
+ JitsiMeetLogger.w(TAG + " Couldn't set call audio state listener, module is null");
|
140
|
142
|
}
|
141
|
143
|
}
|
142
|
144
|
|
|
@@ -145,6 +147,8 @@ class AudioDeviceHandlerConnectionService implements
|
145
|
147
|
RNConnectionService rcs = ReactInstanceManagerHolder.getNativeModule(RNConnectionService.class);
|
146
|
148
|
if (rcs != null) {
|
147
|
149
|
rcs.setCallAudioStateListener(null);
|
|
150
|
+ } else {
|
|
151
|
+ JitsiMeetLogger.w(TAG + " Couldn't set call audio state listener, module is null");
|
148
|
152
|
}
|
149
|
153
|
}
|
150
|
154
|
|