Revert "Workaround suspended VPNs"

This reverts commit c7a219df07.
This commit is contained in:
M66B 2020-11-28 12:46:30 +01:00
parent 021fd06de8
commit 217eb46018
1 changed files with 2 additions and 5 deletions

View File

@ -234,11 +234,8 @@ public class ConnectionHelper {
// onLost [... state: DISCONNECTED/DISCONNECTED ... available: true]
NetworkInfo ani = cm.getNetworkInfo(active);
if (ani == null || ani.getState() != NetworkInfo.State.CONNECTED) {
Log.i("isMetered: no/connected active info ani=" + ani);
if (ani == null ||
ani.getState() != NetworkInfo.State.SUSPENDED ||
ani.getType() != ConnectivityManager.TYPE_VPN)
return null;
Log.i("isMetered: no active info ani=" + ani);
return null;
}
NetworkCapabilities caps = cm.getNetworkCapabilities(active);