diff --git a/app/src/main/java/de/kuschku/quasseldroid/service/QuasseldroidNotificationManager.kt b/app/src/main/java/de/kuschku/quasseldroid/service/QuasseldroidNotificationManager.kt
index ac7f01560af3a447866b227de5138509735e62af..821b2b2074f9b271199eaa330a41c7ef79d63c87 100644
--- a/app/src/main/java/de/kuschku/quasseldroid/service/QuasseldroidNotificationManager.kt
+++ b/app/src/main/java/de/kuschku/quasseldroid/service/QuasseldroidNotificationManager.kt
@@ -87,7 +87,7 @@ class QuasseldroidNotificationManager @Inject constructor(private val context: C
           NotificationManager.IMPORTANCE_DEFAULT
         ).apply {
           setSound(null, null)
-          enableLights(false)
+          enableLights(true)
           enableVibration(false)
           lightColor = context.getColorCompat(R.color.colorPrimary)
           lockscreenVisibility = Notification.VISIBILITY_PRIVATE
@@ -219,7 +219,9 @@ class QuasseldroidNotificationManager @Inject constructor(private val context: C
                 0,
                 translatedLocale.getString(R.string.label_reply),
                 replyPendingIntent
-              ).addRemoteInput(remoteInput).build()
+              ).addRemoteInput(remoteInput)
+                .setAllowGeneratedReplies(true)
+                .build()
             )
           }
       }