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

Commit ad7d713e authored by Julia Reynolds's avatar Julia Reynolds
Browse files

Consolidate logic for 'recent notifications'

Test: runtest systemui-notification
Bug: 74318867
Change-Id: I962fe63f09f466d8e5e8238c66735b20f90c57b4
parent 6f2965af
Loading
Loading
Loading
Loading
+1 −5
Original line number Diff line number Diff line
@@ -1877,13 +1877,13 @@ public class NotificationManagerService extends SystemService {
        return newSuppressedVisualEffects;
    }

    // TODO: log visual differences, not just audible ones
    @GuardedBy("mNotificationLock")
    protected void maybeRecordInterruptionLocked(NotificationRecord r) {
        if (r.isInterruptive()) {
            mAppUsageStats.reportInterruptiveNotification(r.sbn.getPackageName(),
                    r.getChannel().getId(),
                    getRealUserId(r.sbn.getUserId()));
            logRecentLocked(r);
        }
    }

@@ -4344,10 +4344,6 @@ public class NotificationManagerService extends SystemService {

                    mNotificationsByKey.put(n.getKey(), r);

                    if (!r.isUpdate) {
                        logRecentLocked(r);
                    }

                    // Ensure if this is a foreground service that the proper additional
                    // flags are set.
                    if ((notification.flags & Notification.FLAG_FOREGROUND_SERVICE) != 0) {