Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e6db500b authored by Irfan Sheriff's avatar Irfan Sheriff
Browse files

Fix msg argument usage

Change-Id: I5b38dcbae3918a1e8c828d6e246eadf520d06c06
parent 11aefad9
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -587,8 +587,9 @@ public class WifiWatchdogStateMachine extends StateMachine {
                    break;

                case EVENT_WIFI_RADIO_STATE_CHANGE:
                    if ((Integer) msg.obj == WifiManager.WIFI_STATE_DISABLING)
                    if (msg.arg1 == WifiManager.WIFI_STATE_DISABLING) {
                        transitionTo(mNotConnectedState);
                    }
                    break;

                default: