Skip to content

Commit

Permalink
fix: hide all apps when no root
Browse files Browse the repository at this point in the history
  • Loading branch information
Sevtinge committed Nov 28, 2024
1 parent b6cdacd commit c2480f0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ private void init(Context context) {
mDisableOrHiddenApp.add(" - " + getTitle() + " (" + getSummary() + ")");
setVisible(false);
}
if (!scope.contains(getSummary()) && (getSummary() != null)) {
if (!scope.contains(getSummary()) && (getSummary() != null) && isScopeGet) {
notInSelectedScope.add((String) getSummary());
mNoScoped.add(" - " + getTitle() + " (" + getSummary() + ")");
setVisible(false);
Expand Down

0 comments on commit c2480f0

Please sign in to comment.