patch for ListHelper.java
double check for null
This commit is contained in:
parent
d22426fd53
commit
ba334e04f4
1 changed files with 2 additions and 2 deletions
|
|
@ -443,11 +443,11 @@ public final class ListHelper {
|
||||||
/**
|
/**
|
||||||
* Are we connected to wifi?
|
* Are we connected to wifi?
|
||||||
* @param context App context
|
* @param context App context
|
||||||
* @return True if connected to wifi
|
* @return {@code true} if connected to wifi
|
||||||
*/
|
*/
|
||||||
private static boolean isWifiActive(Context context)
|
private static boolean isWifiActive(Context context)
|
||||||
{
|
{
|
||||||
ConnectivityManager manager = (ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE);
|
ConnectivityManager manager = (ConnectivityManager)context.getSystemService(Context.CONNECTIVITY_SERVICE);
|
||||||
return manager.getActiveNetworkInfo().getType() == ConnectivityManager.TYPE_WIFI;
|
return manager != null && manager.getActiveNetworkInfo() != null && manager.getActiveNetworkInfo().getType() == ConnectivityManager.TYPE_WIFI;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue