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

Commit 5c87ce29 authored by Sara Ting's avatar Sara Ting
Browse files

Use priority MIN for expired digest notification.

Bug:6282451
Change-Id: I29c6061b45ccb2258889ef917de33bca55e37727
parent ffa8bff8
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();
    }