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

Commit f7d0ef9f authored by Shijian Li's avatar Shijian Li
Browse files

Don't set USER_FIXED when revoking a permission inside Settings -> App.

Test: Manually tested on a permission test apk.
Bug: 34157400
Change-Id: Ia2ce3ac6c567f869535ec92a896c6d0fd9ec6318
parent 1019d738
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -206,7 +206,7 @@ public final class AppPermissionsFragmentWear extends PreferenceFragment {
            if((Boolean) newVal) {
                group.grantRuntimePermissions(false, new String[]{ perm.name });
            } else {
                group.revokeRuntimePermissions(true, new String[]{ perm.name });
                group.revokeRuntimePermissions(false, new String[]{ perm.name });
            }
            return true;
        });