Loading src/com/android/settings/wifi/WifiSettings.java +6 −1 Original line number Diff line number Diff line Loading @@ -835,6 +835,11 @@ public class WifiSettings extends SettingsPreferenceFragment WifiManager.EXTRA_NEW_STATE); if (!mConnected.get() && SupplicantState.isHandshakeState(state)) { updateConnectionState(WifiInfo.getDetailedStateOf(state)); } else { // During a connect, we may have the supplicant // state change affect the detailed network state. // Make sure a lost connection is updated as well. updateConnectionState(null); } } else if (WifiManager.NETWORK_STATE_CHANGED_ACTION.equals(action)) { NetworkInfo info = (NetworkInfo) intent.getParcelableExtra( Loading Loading
src/com/android/settings/wifi/WifiSettings.java +6 −1 Original line number Diff line number Diff line Loading @@ -835,6 +835,11 @@ public class WifiSettings extends SettingsPreferenceFragment WifiManager.EXTRA_NEW_STATE); if (!mConnected.get() && SupplicantState.isHandshakeState(state)) { updateConnectionState(WifiInfo.getDetailedStateOf(state)); } else { // During a connect, we may have the supplicant // state change affect the detailed network state. // Make sure a lost connection is updated as well. updateConnectionState(null); } } else if (WifiManager.NETWORK_STATE_CHANGED_ACTION.equals(action)) { NetworkInfo info = (NetworkInfo) intent.getParcelableExtra( Loading