Keep never as the default wifi sleep settings
Bug: 3404049 Change-Id: I824b8cb7b28223cfb4eb89cabc7cb237a4e1e6db
This commit is contained in:
@ -955,10 +955,10 @@ public class WifiService extends IWifiManager.Stub {
|
||||
* @see #shouldDeviceStayAwake(int, int)
|
||||
*/
|
||||
private boolean shouldWifiStayAwake(int stayAwakeConditions, int pluggedType) {
|
||||
//Never sleep when plugged in as long as the user has not changed the settings
|
||||
//Never sleep as long as the user has not changed the settings
|
||||
int wifiSleepPolicy = Settings.System.getInt(mContext.getContentResolver(),
|
||||
Settings.System.WIFI_SLEEP_POLICY,
|
||||
Settings.System.WIFI_SLEEP_POLICY_NEVER_WHILE_PLUGGED);
|
||||
Settings.System.WIFI_SLEEP_POLICY_NEVER);
|
||||
|
||||
if (wifiSleepPolicy == Settings.System.WIFI_SLEEP_POLICY_NEVER) {
|
||||
// Never sleep
|
||||
|
Reference in New Issue
Block a user