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

Commit 603ee434 authored by Manish Singh's avatar Manish Singh Committed by Android (Google) Code Review
Browse files

Merge "Don't show private profile apps in Opening links" into main

parents bfd1e959 d30ae07a
Loading
Loading
Loading
Loading
+7 −1
Original line number Diff line number Diff line
@@ -2131,7 +2131,13 @@ public class ApplicationsState {
        public boolean filterApp(AppEntry entry) {
            return !AppUtils.isInstant(entry.info)
                    && hasFlag(entry.info.privateFlags,
                    ApplicationInfo.PRIVATE_FLAG_HAS_DOMAIN_URLS);
                    ApplicationInfo.PRIVATE_FLAG_HAS_DOMAIN_URLS)
                    && !entry.hideInQuietMode;
        }

        @Override
        public void refreshAppEntryOnRebuild(@NonNull AppEntry appEntry, boolean hideInQuietMode) {
            appEntry.hideInQuietMode = hideInQuietMode;
        }
    };