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

Commit cd486c06 authored by Weng Su's avatar Weng Su Committed by Automerger Merge Worker
Browse files

Merge "fix WifiUtils:isNetworkLockedDown() null pointer issue" am: 956f288d am: ee773103

parents 99c0b8ba ee773103
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -96,7 +96,7 @@ public class WifiUtils extends com.android.settingslib.wifi.WifiUtils {
     * @return true if Settings cannot modify the config due to lockDown.
     */
    public static boolean isNetworkLockedDown(Context context, WifiConfiguration config) {
        if (config == null) {
        if (context == null || config == null) {
            return false;
        }