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

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

am fd266000: Notification: Only post-process legacy notifications

* commit 'fd266000212b33956d586807c76967b30b815cb6':
  Notification: Only post-process legacy notifications
parents 2fa7adb6 1cda67f8
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;
        }

        /**