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

Commit 5a2d76c1 authored by Christoph Studer's avatar Christoph Studer Committed by Android Git Automerger
Browse files

am 8fed3095: Merge "SysUI: Fix bug where ZEN notification icon was shown" into lmp-preview-dev

* commit '8fed3095b2b2342ebf59636b94e68b62ca16fd0d':
  SysUI: Fix bug where ZEN notification icon was shown
parents 415f3541 3326a878
Loading
Loading
Loading
Loading
+1 −2
Original line number Diff line number Diff line
@@ -31,7 +31,6 @@ import com.android.systemui.statusbar.phone.PhoneStatusBar;
public class InterceptedNotifications {
    private static final String TAG = "InterceptedNotifications";
    private static final String EXTRA_INTERCEPT = "android.intercept";
    private static final String SYNTHETIC_KEY = "InterceptedNotifications.SYNTHETIC_KEY";

    private final Context mContext;
    private final PhoneStatusBar mBar;
@@ -71,7 +70,7 @@ public class InterceptedNotifications {
    }

    public boolean isSyntheticEntry(Entry ent) {
        return ent.key.equals(SYNTHETIC_KEY);
        return ent.key.equals(mSynKey);
    }

    public void update(StatusBarNotification notification) {