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

Commit 0d6faae8 authored by Charlotte Lu's avatar Charlotte Lu
Browse files

[WIFI-WEP] Show WEP dialog when WEP disabled by the provider.

Bug: 349450509
Test: Visual Test
Flag: EXEMPT bugfix
Change-Id: Ifd4574afc8eb9c8c1e38b687476c174c1c826f67
parent 6ba569ae
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 {