Fix notification sound for single message "summary" notification

This commit is contained in:
cketti 2021-09-18 19:19:41 +02:00
parent 128e06e42a
commit d57b85b820

View file

@ -13,7 +13,9 @@ internal open class SingleMessageNotifications(
fun buildSingleMessageNotification(account: Account, holder: NotificationHolder): Notification {
val notificationId = holder.notificationId
return createSingleMessageNotificationBuilder(account, holder, notificationId).build()
return createSingleMessageNotificationBuilder(account, holder, notificationId)
.setNotificationSilent()
.build()
}
fun createSingleMessageNotificationBuilder(
@ -23,7 +25,6 @@ internal open class SingleMessageNotifications(
): NotificationCompat.Builder {
val content = holder.content
val builder = createBigTextStyleNotification(account, holder, notificationId)
builder.setNotificationSilent()
val deletePendingIntent = actionCreator.createDismissMessagePendingIntent(
context, content.messageReference, holder.notificationId