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

Commit fe9ed8f3 authored by Arif Hussain's avatar Arif Hussain Committed by Gerrit - the friendly Code Review server
Browse files

Settings: WiFi: Fix pop up dialog to notify WiFi enabled in STA+SAP concurrency mode

While enabling portable wlan hotspot, do not show pop up dialog to notify WiFi
enabled if STA+SAP concurrency enabled.

Change-Id: I7bd5f4c2621d68908dae2e592539861c20ec74a8
CRs-Fixed: 1069517
parent 9462b4cb
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -620,7 +620,8 @@ public class TetherSettings extends RestrictedSettingsFragment
                getPrefContext().startActivity(intent);
                ((HotspotPreference)preference).setChecked(false);
                return false;
            } else if(checkWifiConnectivityState(getActivity())) {
            } else if(checkWifiConnectivityState(getActivity())
                      && !mWifiManager.getWifiStaSapConcurrency()) {
                showTurnOffWifiDialog(getActivity());
                startTethering(TETHERING_WIFI);
            } else {