From d86a4991b6fe37d5c0eac97605589f659f02abf5 Mon Sep 17 00:00:00 2001 From: Eugene Cheung Date: Wed, 9 Jan 2019 21:01:20 -0500 Subject: [PATCH] Enable notification badge (closes #623) Note that this only affects new installs since the channel ID is still the same. --- .../gramophone/service/notification/PlayingNotification.java | 1 - 1 file changed, 1 deletion(-) diff --git a/app/src/main/java/com/kabouzeid/gramophone/service/notification/PlayingNotification.java b/app/src/main/java/com/kabouzeid/gramophone/service/notification/PlayingNotification.java index 2969a4e2..b17e91ba 100644 --- a/app/src/main/java/com/kabouzeid/gramophone/service/notification/PlayingNotification.java +++ b/app/src/main/java/com/kabouzeid/gramophone/service/notification/PlayingNotification.java @@ -70,7 +70,6 @@ public abstract class PlayingNotification { notificationChannel.setDescription(service.getString(R.string.playing_notification_description)); notificationChannel.enableLights(false); notificationChannel.enableVibration(false); - notificationChannel.setShowBadge(false); notificationManager.createNotificationChannel(notificationChannel); }