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

Commit a6a6f03c authored by Selim Cinek's avatar Selim Cinek
Browse files

Fixed a bug where notifications were not updated inplace

The logic was inverted before.

Change-Id: Iaa16fc38905ebd6b10ba6eb925b8f332306feaa5
parent df94885e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2092,7 +2092,7 @@ public abstract class BaseStatusBar extends SystemUI implements
        Notification n = notification.getNotification();
        mNotificationData.updateRanking(ranking);

        boolean applyInPlace = !entry.cacheContentViews(mContext, notification.getNotification());
        boolean applyInPlace = entry.cacheContentViews(mContext, notification.getNotification());
        boolean shouldInterrupt = shouldInterrupt(entry, notification);
        boolean alertAgain = alertAgain(entry, n);
        if (DEBUG) {