mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-27 08:01:50 +01:00
Workaround invalid not metered indication
This commit is contained in:
@@ -197,9 +197,10 @@ public class ConnectionHelper {
|
||||
}
|
||||
|
||||
if (caps.hasCapability(NetworkCapabilities.NET_CAPABILITY_NOT_VPN)) {
|
||||
boolean unmetered = caps.hasCapability(NetworkCapabilities.NET_CAPABILITY_NOT_METERED);
|
||||
Log.i("isMetered: active not VPN unmetered=" + unmetered);
|
||||
return !unmetered;
|
||||
// NET_CAPABILITY_NOT_METERED is unreliable on older Android versions
|
||||
boolean metered = cm.isActiveNetworkMetered();
|
||||
Log.i("isMetered: active not VPN metered=" + metered);
|
||||
return metered;
|
||||
}
|
||||
|
||||
// VPN: evaluate underlying networks
|
||||
|
||||
Reference in New Issue
Block a user