diff options
author | cyBerta <cyberta@riseup.net> | 2021-12-17 02:22:10 +0100 |
---|---|---|
committer | cyBerta <cyberta@riseup.net> | 2021-12-17 02:22:10 +0100 |
commit | f2e791de0219e9874ac1878de17ff814f308c8e5 (patch) | |
tree | 013f2cae41e7c0647048216d90901c476136908b /app/src/fatweb/java | |
parent | 684963a35cf0ba6e68f52877c1411690f0ef5731 (diff) |
don't show led colors for vpn stats notifications, use them when app updates are available
Diffstat (limited to 'app/src/fatweb/java')
-rw-r--r-- | app/src/fatweb/java/se.leap.bitmaskclient/appUpdate/DownloadNotificationManager.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/src/fatweb/java/se.leap.bitmaskclient/appUpdate/DownloadNotificationManager.java b/app/src/fatweb/java/se.leap.bitmaskclient/appUpdate/DownloadNotificationManager.java index aaf487aa..939ed852 100644 --- a/app/src/fatweb/java/se.leap.bitmaskclient/appUpdate/DownloadNotificationManager.java +++ b/app/src/fatweb/java/se.leap.bitmaskclient/appUpdate/DownloadNotificationManager.java @@ -111,6 +111,7 @@ public class DownloadNotificationManager { NotificationManager.IMPORTANCE_LOW); channel.setSound(null, null); channel.setDescription(description); + channel.setLightColor(Color.BLUE); // Register the channel with the system; you can't change the importance // or other notification behaviors after this notificationManager.createNotificationChannel(channel); |