Added network bug workaround

pull/170/head
M66B 6 years ago
parent f1ef60d0c8
commit aabae2d8d6

@ -187,8 +187,14 @@ public class ConnectionHelper {
Network active = cm.getActiveNetwork(); Network active = cm.getActiveNetwork();
if (active == null) { if (active == null) {
Log.i("isMetered: no active network"); Log.i("isMetered: no active network");
// Workaround bug in some Android versions
NetworkInfo ani = cm.getActiveNetworkInfo();
if (ani == null || !ani.isConnected()) {
Log.i("isMetered: no active network=" + (ani == null ? null : ani.isConnected()));
return null; return null;
} }
return cm.isActiveNetworkMetered();
}
// onLost [... state: DISCONNECTED/DISCONNECTED ... available: true] // onLost [... state: DISCONNECTED/DISCONNECTED ... available: true]
NetworkInfo ani = cm.getNetworkInfo(active); NetworkInfo ani = cm.getNetworkInfo(active);

Loading…
Cancel
Save