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

Commit eba024ea authored by Irfan Sheriff's avatar Irfan Sheriff Committed by Android Git Automerger
Browse files

am a65430a2: am 17cf1f2b: Fix build

* commit 'a65430a2':
  Fix build
parents a047faed a65430a2
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -98,6 +98,8 @@ public class WifiWatchdogStateMachine extends StateMachine {
    static final int POOR_LINK_DETECTED                             = BASE + 21;
    static final int GOOD_LINK_DETECTED                             = BASE + 22;

    public static final boolean DEFAULT_POOR_NETWORK_AVOIDANCE_ENABLED = false;

    /*
     * RSSI levels as used by notification icon
     * Level 4  -55 <= RSSI
@@ -440,7 +442,8 @@ public class WifiWatchdogStateMachine extends StateMachine {
            mPoorNetworkDetectionEnabled = false;
        } else {
            mPoorNetworkDetectionEnabled = getSettingsGlobalBoolean(mContentResolver,
                    Settings.Global.WIFI_WATCHDOG_POOR_NETWORK_TEST_ENABLED, false);
                    Settings.Global.WIFI_WATCHDOG_POOR_NETWORK_TEST_ENABLED,
                    DEFAULT_POOR_NETWORK_AVOIDANCE_ENABLED);
        }
    }