From 15df63b3bb47cc72d95d49d9bd8795e4ab2552d4 Mon Sep 17 00:00:00 2001 From: Sergei Bakhtiarov Date: Tue, 17 Mar 2026 12:28:55 +0100 Subject: [PATCH] fix: read confirmation on reply from notification (WPB-8756) --- .../broadcastreceivers/NotificationReplyReceiver.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/app/src/main/kotlin/com/wire/android/notification/broadcastreceivers/NotificationReplyReceiver.kt b/app/src/main/kotlin/com/wire/android/notification/broadcastreceivers/NotificationReplyReceiver.kt index 2aef8762c01..65d0a8dae26 100644 --- a/app/src/main/kotlin/com/wire/android/notification/broadcastreceivers/NotificationReplyReceiver.kt +++ b/app/src/main/kotlin/com/wire/android/notification/broadcastreceivers/NotificationReplyReceiver.kt @@ -68,8 +68,9 @@ class NotificationReplyReceiver : CoroutineReceiver() { // requires zero argumen { updateNotification(context, conversationId, qualifiedUserId, replyText) } ) conversations.updateConversationReadDateUseCase( - qualifiedConversationId, - Clock.System.now() + conversationId = qualifiedConversationId, + time = Clock.System.now(), + invokeImmediately = true, ) } }