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

Commit f4deb1bf authored by Charlotte Lu's avatar Charlotte Lu Committed by Android (Google) Code Review
Browse files

Merge "[WIFI-WEP] Show WEP dialog when WEP disabled by the provider." into main

parents 8ac58bfc 0d6faae8
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -498,7 +498,7 @@ open class WifiUtils {
        ): Job =
            coroutineScope.launch {
                val wifiManager = context.getSystemService(WifiManager::class.java) ?: return@launch
                if (wifiManager.queryWepAllowed()) {
                if (wifiManager.isWepSupported == true && wifiManager.queryWepAllowed()) {
                    onAllowed()
                } else {
                    val intent = Intent(Intent.ACTION_MAIN).apply {