Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 4875662f authored by Manish Singh's avatar Manish Singh
Browse files

Apply personal filter when private tab not shown

Bug: 336327005
Fix: 337744275
Test: manual
Change-Id: I1c8cbc35f90cd39bb332f9a6b787473779249166
parent 9229860d
Loading
Loading
Loading
Loading
+5 −1
Original line number Diff line number Diff line
@@ -667,7 +667,11 @@ public class ManageApplications extends InstrumentedFragment
            compositeFilter =
                    new CompoundFilter(compositeFilter, ApplicationsState.FILTER_PRIVATE_PROFILE);
        }
        if (mIsPersonalOnly) {

        // We might not be showing the private tab even when there's a private profile present and
        // there's only personal profile info to show, in which case we should still apply the
        // personal filter.
        if (mIsPersonalOnly || !(mIsWorkOnly || mIsPrivateProfileOnly)) {
            compositeFilter = new CompoundFilter(compositeFilter,
                    ApplicationsState.FILTER_PERSONAL);
        }