Skip to content
Snippets Groups Projects
Commit 0a8132fb authored by Amith Yamasani's avatar Amith Yamasani Committed by Android (Google) Code Review
Browse files

Merge "Fix bootloop when apps are quarantined" into main

parents db471898 58fc7f6b
No related branches found
No related tags found
No related merge requests found
......@@ -17,7 +17,6 @@
package com.android.server.pm.pkg;
import android.annotation.Nullable;
import android.content.pm.Flags;
import android.content.pm.SuspendDialogInfo;
import android.os.BaseBundle;
import android.os.PersistableBundle;
......@@ -142,8 +141,7 @@ public final class SuspendParams {
PersistableBundle readAppExtras = null;
PersistableBundle readLauncherExtras = null;
final boolean quarantined = in.getAttributeBoolean(null, ATTR_QUARANTINED, false)
&& Flags.quarantinedEnabled();
final boolean quarantined = in.getAttributeBoolean(null, ATTR_QUARANTINED, false);
final int currentDepth = in.getDepth();
int type;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment