We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b2709e commit fee2e97Copy full SHA for fee2e97
restcomm.android.client.sdk/src/main/java/org/mobicents/restcomm/android/client/sdk/RCDevice.java
@@ -183,6 +183,11 @@ private void initializeSignalling(boolean connectivity)
183
184
private void onReachabilityChanged(final RCDeviceListener.RCConnectivityStatus newState)
185
{
186
+ if (newState == reachabilityState) {
187
+ RCLogger.w(TAG, "Reachability event, but remained the same: " + newState);
188
+ return;
189
+ }
190
+
191
if (newState == RCDeviceListener.RCConnectivityStatus.RCConnectivityStatusNone && state != DeviceState.OFFLINE) {
192
RCLogger.w(TAG, "Reachability changed; no connectivity");
193
DeviceImpl.GetInstance().unbind();
0 commit comments