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

Commit a3efed5c authored by Sara Ting's avatar Sara Ting Committed by Android (Google) Code Review
Browse files

Merge "Use priority MIN for expired digest notification." into jb-dev

parents d1c319eb 5c87ce29
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -354,8 +354,8 @@ public class AlertReceiver extends BroadcastReceiver {
        // Remove the title in the expanded form (redundant with the listed items).
        expandedBuilder.setBigContentTitle("");

        // Set to a low priority to encourage the notification manager to collapse it.
        notificationBuilder.setPriority(Notification.PRIORITY_LOW);
        // Set to min priority to encourage the notification manager to collapse it.
        notificationBuilder.setPriority(Notification.PRIORITY_MIN);

        return expandedBuilder.build();
    }