Skip to content

Commit 329b8dc

Browse files
committed
Debloater: fix listing uninstalled system apps
Signed-off-by: Muntashir Al-Islam <muntashirakon@riseup.net>
1 parent ab2b17f commit 329b8dc

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

app/src/main/java/io/github/muntashirakon/AppManager/debloat/DebloatObject.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -211,10 +211,7 @@ public void fillInstallInfo(@NonNull Context context, @NonNull AppDb appDb) {
211211
mFrozen = null;
212212
List<App> apps = appDb.getAllApplications(packageName);
213213
for (App app : apps) {
214-
if (!app.isInstalled) {
215-
continue;
216-
}
217-
mInstalled = true;
214+
mInstalled = app.isInstalled;
218215
addUser(app.userId);
219216
mSystemApp = app.isSystemApp();
220217
mFrozen = !app.isEnabled;

0 commit comments

Comments
 (0)