Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Settings: unconditionally enable 5GHz and 6GHz hotspots
Browse files Browse the repository at this point in the history
neelchauhan committed Dec 10, 2024

Verified

This commit was signed with the committer’s verified signature.
poker10 Juraj Nemec
1 parent d039996 commit 127ed01
Showing 1 changed file with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -384,11 +384,7 @@ public boolean isDualBand() {
* @return {@code true} if Wi-Fi 5 GHz Band is supported
*/
public boolean is5GHzBandSupported() {
if (mIs5gBandSupported == null) {
mIs5gBandSupported = mWifiManager.is5GHzBandSupported();
log("is5GHzBandSupported():" + mIs5gBandSupported);
}
return mIs5gBandSupported;
return true;
}

/**
@@ -426,11 +422,7 @@ protected void update5gAvailable() {
* @return {@code true} if Wi-Fi 6 GHz Band is supported
*/
public boolean is6GHzBandSupported() {
if (mIs6gBandSupported == null) {
mIs6gBandSupported = mWifiManager.is6GHzBandSupported();
log("is6GHzBandSupported():" + mIs6gBandSupported);
}
return mIs6gBandSupported;
return true;
}

/**

0 comments on commit 127ed01

Please sign in to comment.