Check if active network is connected

pull/147/head
M66B 6 years ago
parent e7dd1a01b1
commit 56cc9043de

@ -706,8 +706,15 @@ public class Helper {
return null;
}
NetworkInfo ani = cm.getNetworkInfo(active);
if (log)
EntityLog.log(context, "isMetered: active info=" + cm.getNetworkInfo(active));
EntityLog.log(context, "isMetered: active info=" + ani);
if (ani == null || !ani.isConnected()) {
if (log)
EntityLog.log(context, "isMetered: active network not connected");
return null;
}
NetworkCapabilities caps = cm.getNetworkCapabilities(active);
if (caps == null) {

Loading…
Cancel
Save