From cf69851f667b49f5e50db25e6facb3bcea5b6e3a Mon Sep 17 00:00:00 2001 From: M66B Date: Mon, 1 Sep 2025 21:05:40 +0200 Subject: [PATCH] Change to green notification light --- app/src/main/java/eu/faircode/email/NotificationHelper.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/src/main/java/eu/faircode/email/NotificationHelper.java b/app/src/main/java/eu/faircode/email/NotificationHelper.java index 329686dc53..64de203a88 100644 --- a/app/src/main/java/eu/faircode/email/NotificationHelper.java +++ b/app/src/main/java/eu/faircode/email/NotificationHelper.java @@ -139,7 +139,7 @@ class NotificationHelper { NotificationManager.IMPORTANCE_HIGH); notification.setDescription(context.getString(R.string.channel_notification_description)); notification.enableLights(true); - notification.setLightColor(Color.YELLOW); + notification.setLightColor(Color.GREEN); notification.setLockscreenVisibility(Notification.VISIBILITY_PRIVATE); //notification.setBypassDnd(true); createNotificationChannel(nm, notification); @@ -1384,7 +1384,7 @@ class NotificationHelper { } private static void setLight(NotificationCompat.Builder builder) { - builder.setLights(Color.YELLOW, 500, 500); + builder.setLights(Color.GREEN, 500, 500); Log.i("Notify light enabled"); }