Fix crash when toggling WifiOnly mode when no DATA connection available

This commit is contained in:
Sylvain Berfini 2013-01-10 11:23:18 +01:00
parent ebb630ce9d
commit 4398a502e4

View file

@ -239,7 +239,7 @@ public class PreferencesFragment extends PreferencesListFragment implements EcCa
NetworkInfo eventInfo = cm.getActiveNetworkInfo();
LinphoneCore lc = LinphoneManager.getLcIfManagerNotDestroyedOrNull();
if (eventInfo.getTypeName().equals("mobile") && lc != null) {
if (eventInfo != null && eventInfo.getTypeName() != null && eventInfo.getTypeName().equals("mobile") && lc != null) {
lc.setNetworkReachable(!isSettingActivated);
}