Skip to content

Commit

Permalink
AppCleaner: Fix Shizuku not being used to clear caches in some cases
Browse files Browse the repository at this point in the history
  • Loading branch information
d4rken committed May 2, 2024
1 parent 1f9c090 commit 113b68e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class InaccessibleDeleter @Inject constructor(
targetPkgs: Collection<Installed.InstallId>?,
useAutomation: Boolean,
): InaccDelResult {
log(TAG, INFO) { "deleteInaccessible() pkgs=${targetPkgs?.size}, $useAutomation" }
log(TAG, INFO) { "deleteInaccessible() targetPkgs=${targetPkgs?.size}, $useAutomation" }

updateProgressPrimary(eu.darken.sdmse.common.R.string.general_progress_preparing)
updateProgressSecondary(CaString.EMPTY)
Expand All @@ -94,7 +94,7 @@ class InaccessibleDeleter @Inject constructor(

return deleteInaccessible(
targetInaccessible,
isAllApps = targetJunk == null,
isAllApps = targetPkgs == null,
useAutomation = useAutomation
)
}
Expand Down

0 comments on commit 113b68e

Please sign in to comment.