diff options
| author | 2023-03-22 01:15:45 +0000 | |
|---|---|---|
| committer | 2023-03-22 01:15:45 +0000 | |
| commit | ff938d9dcb73df78d8fb6723e2c2c055e4be6ebc (patch) | |
| tree | 3b27dd179eb247f1f774da52d155726e002be51b | |
| parent | 42b71cc155807c7046824403bf7b3654f8ddea91 (diff) | |
| parent | 19ff9cb093a786f90f06d62909bb7e658568e4bc (diff) | |
Merge "Fix the typo of using handleCellularState for WiFi and Ethernet" into tm-qpr-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/qs/tiles/InternetTile.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/qs/tiles/InternetTile.java b/packages/SystemUI/src/com/android/systemui/qs/tiles/InternetTile.java index 46412a37572c..75d01723667d 100644 --- a/packages/SystemUI/src/com/android/systemui/qs/tiles/InternetTile.java +++ b/packages/SystemUI/src/com/android/systemui/qs/tiles/InternetTile.java @@ -478,13 +478,13 @@ public class InternetTile extends QSTileImpl<SignalState> { synchronized (mSignalCallback.mWifiInfo) { mSignalCallback.mWifiInfo.copyTo(mifiInfo); } - handleUpdateCellularState(state, mifiInfo); + handleUpdateWifiState(state, mifiInfo); } else if (mLastTileState == LAST_STATE_ETHERNET) { EthernetCallbackInfo ethernetInfo = new EthernetCallbackInfo(); synchronized (mSignalCallback.mEthernetInfo) { mSignalCallback.mEthernetInfo.copyTo(ethernetInfo); } - handleUpdateCellularState(state, ethernetInfo); + handleUpdateEthernetState(state, ethernetInfo); } } } |