Revert "Added network bug workaround"

This reverts commit aabae2d8d6.
This commit is contained in:
M66B 2019-12-23 21:29:57 +01:00
parent e9bceaf26b
commit fd223d6d4c
1 changed files with 1 additions and 7 deletions

View File

@ -187,14 +187,8 @@ 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);