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

Commit 2af661dc authored by Jacob Hobbie's avatar Jacob Hobbie Committed by Android (Google) Code Review
Browse files

Merge "Temporarily omit the skip"

parents 487a20d5 4c13e124
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -789,7 +789,7 @@ public final class BroadcastQueue {

        // Ensure that broadcasts are only sent to other apps if they are explicitly marked as
        // exported, or are System level broadcasts
        if (!skip && !filter.exported && Process.SYSTEM_UID != r.callingUid
        if (!skip && !filter.exported && !Process.isCoreUid(r.callingUid)
                && filter.receiverList.uid != r.callingUid) {

            Slog.w(TAG, "Exported Denial: sending "
@@ -800,7 +800,7 @@ public final class BroadcastQueue {
                    + " due to receiver " + filter.receiverList.app
                    + " (uid " + filter.receiverList.uid + ")"
                    + " not specifying RECEIVER_EXPORTED");
            skip = true;
            // skip = true;
        }

        if (skip) {