diff --git a/app/src/main/java/com/tughi/aggregator/Notifications.kt b/app/src/main/java/com/tughi/aggregator/Notifications.kt index bf526dd..13e4e39 100644 --- a/app/src/main/java/com/tughi/aggregator/Notifications.kt +++ b/app/src/main/java/com/tughi/aggregator/Notifications.kt @@ -28,7 +28,7 @@ object Notifications { val notificationManager = context.getSystemService(Context.NOTIFICATION_SERVICE) as NotificationManager val notificationChannel = NotificationChannel(NOTIFICATION_CHANNEL__MY_FEED, context.getString(R.string.notification_channel__my_feed), NotificationManager.IMPORTANCE_DEFAULT) - notificationChannel.shouldShowLights() + notificationChannel.enableLights(true) notificationManager.createNotificationChannel(notificationChannel) for (otherNotificationChannel in notificationManager.notificationChannels) {