Skip to content

Commit

Permalink
AppCleaner: Fix found item count
Browse files Browse the repository at this point in the history
Was "count of apps with expendable files"
Now is the sum of matches across all apps and filters
  • Loading branch information
d4rken committed Aug 21, 2024
1 parent 33506c6 commit ced5821
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class AppCleaner @Inject constructor(
)

return AppCleanerScanTask.Success(
itemCount = results.size,
itemCount = results.sumOf { it.itemCount },
recoverableSpace = results.sumOf { it.size },
)
}
Expand Down

0 comments on commit ced5821

Please sign in to comment.