diff options
author | vandwalle <vandwalle@google.com> | 2014-09-08 19:48:59 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2014-09-08 19:48:59 +0000 |
commit | 8828537f61979a90bf8a48d041cecab3e8b7b598 (patch) | |
tree | dc121c44d3e774a5e5d1db3b8968d5fe6a44ba0e /packages | |
parent | c956c88093e94156c5a99a40376b23799fb9ddec (diff) | |
parent | 6e13a5c8a1c39b0676805dda3ecb258486d6c1b1 (diff) | |
download | frameworks_base-8828537f61979a90bf8a48d041cecab3e8b7b598.zip frameworks_base-8828537f61979a90bf8a48d041cecab3e8b7b598.tar.gz frameworks_base-8828537f61979a90bf8a48d041cecab3e8b7b598.tar.bz2 |
am 344ddea4: am a35a795f: Merge "add more info to WifiConfiguration.toString: - add the noInternetAccess field - add stats about user triggered wifi state disabling requests - Wifi SSID can change even though we don\'t loose connection, hence it must be looked at with
* commit '344ddea49fb61cde1d9161f3cd010428c137dd6b':
add more info to WifiConfiguration.toString: - add the noInternetAccess field - add stats about user triggered wifi state disabling requests - Wifi SSID can change even though we don't loose connection, hence it must be looked at with each Network State Change
Diffstat (limited to 'packages')
-rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/policy/NetworkControllerImpl.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/policy/NetworkControllerImpl.java b/packages/SystemUI/src/com/android/systemui/statusbar/policy/NetworkControllerImpl.java index 4a6f1a8..f04d6a5 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/policy/NetworkControllerImpl.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/policy/NetworkControllerImpl.java @@ -928,8 +928,8 @@ public class NetworkControllerImpl extends BroadcastReceiver intent.getParcelableExtra(WifiManager.EXTRA_NETWORK_INFO); boolean wasConnected = mWifiConnected; mWifiConnected = networkInfo != null && networkInfo.isConnected(); - // If we just connected, grab the inintial signal strength and ssid - if (mWifiConnected && !wasConnected) { + // If Connected grab the signal strength and ssid + if (mWifiConnected) { // try getting it out of the intent first WifiInfo info = (WifiInfo) intent.getParcelableExtra(WifiManager.EXTRA_WIFI_INFO); if (info == null) { |