From 0233f4dde4821201db75d54b5aba2ae7ff2f6226 Mon Sep 17 00:00:00 2001 From: Benoit Marty Date: Thu, 12 Feb 2026 17:57:52 +0100 Subject: [PATCH] Add name parameters --- .../push/impl/notifications/NotificationDataFactory.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/push/impl/src/main/kotlin/io/element/android/libraries/push/impl/notifications/NotificationDataFactory.kt b/libraries/push/impl/src/main/kotlin/io/element/android/libraries/push/impl/notifications/NotificationDataFactory.kt index 957894e994..487b3df597 100644 --- a/libraries/push/impl/src/main/kotlin/io/element/android/libraries/push/impl/notifications/NotificationDataFactory.kt +++ b/libraries/push/impl/src/main/kotlin/io/element/android/libraries/push/impl/notifications/NotificationDataFactory.kt @@ -144,9 +144,9 @@ class DefaultNotificationDataFactory( .getFallbackNotification(notificationAccountParams.user.userId) ?.notification val notification = notificationCreator.createFallbackNotification( - existingNotification, - notificationAccountParams, - fallback, + existingNotification = existingNotification, + notificationAccountParams = notificationAccountParams, + fallbackNotifiableEvents = fallback, ) return OneShotNotification( tag = FALLBACK_NOTIFICATION_TAG,