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

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

am d2a28cdc: am fd266000: Notification: Only post-process legacy notifications

* commit 'd2a28cdcab5513efa2ff456fa708d6f733ab5e50':
  Notification: Only post-process legacy notifications
parents b497da29 f40ee13c
Loading
Loading
Loading
Loading
+3 −1
Original line number Diff line number Diff line
@@ -32,6 +32,7 @@ import android.media.AudioManager;
import android.media.session.MediaSession;
import android.net.Uri;
import android.os.BadParcelableException;
import android.os.Build;
import android.os.Bundle;
import android.os.Parcel;
import android.os.Parcelable;
@@ -1910,7 +1911,8 @@ public class Notification implements Parcelable
            mPriority = PRIORITY_DEFAULT;
            mPeople = new ArrayList<String>();

            mColorUtil = NotificationColorUtil.getInstance();
            mColorUtil = context.getApplicationInfo().targetSdkVersion < Build.VERSION_CODES.L ?
                    NotificationColorUtil.getInstance() : null;
        }

        /**