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

Commit f5b39642 authored by Walter Jang's avatar Walter Jang
Browse files

Fix stack overflow when reading AOSP experiment flags

Introduced in ag/1181298

Change-Id: I6f1369954a5c81d66064220fc3cc13f96b5bd731
parent 43cf576a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -44,6 +44,6 @@ public final class Flags {
    }

    public boolean getBoolean(String flagName) {
        return mMap.containsKey(flagName) ? getBoolean(flagName) : false;
        return mMap.containsKey(flagName) ? mMap.get(flagName) : false;
    }
}