Enable notification badge (closes #623)

Note that this only affects new installs since the channel ID is still the same.
This commit is contained in:
Eugene Cheung 2019-01-09 21:01:20 -05:00
commit d86a4991b6
No known key found for this signature in database
GPG key ID: E1FD745328866B0A

View file

@ -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);
}