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

Commit a98a660e authored by Lorenzo Colitti's avatar Lorenzo Colitti Committed by Automerger Merge Worker
Browse files

Merge "Fix system_notification_accent_color in Vpn.java as well." am:...

Merge "Fix system_notification_accent_color in Vpn.java as well." am: 15390dd1 am: a7b302d3 am: e47d8600 am: e6387da9

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1993693

Change-Id: Ieaa0d8882c6cddcd24dfb68d5ec2894117ad56ce
parents 0fb88165 e6387da9
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -2020,7 +2020,8 @@ public class Vpn {
                            .setCategory(Notification.CATEGORY_SYSTEM)
                            .setVisibility(Notification.VISIBILITY_PUBLIC)
                            .setOngoing(true)
                            .setColor(mContext.getColor(R.color.system_notification_accent_color));
                            .setColor(mContext.getColor(
                                    android.R.color.system_notification_accent_color));
            notificationManager.notify(TAG, SystemMessage.NOTE_VPN_DISCONNECTED, builder.build());
        } finally {
            Binder.restoreCallingIdentity(token);