diff --git a/libraries/push/impl/src/main/kotlin/io/element/android/libraries/push/impl/notifications/NotifiableEventResolver.kt b/libraries/push/impl/src/main/kotlin/io/element/android/libraries/push/impl/notifications/NotifiableEventResolver.kt index 4a1020ce1a..017627305e 100644 --- a/libraries/push/impl/src/main/kotlin/io/element/android/libraries/push/impl/notifications/NotifiableEventResolver.kt +++ b/libraries/push/impl/src/main/kotlin/io/element/android/libraries/push/impl/notifications/NotifiableEventResolver.kt @@ -269,10 +269,12 @@ class NotifiableEventResolver @Inject constructor( return fileResult .onFailure { Timber.tag(loggerTag.value).e(it, "Failed to download image for notification") - }.getOrNull()?.let { mediaFile -> + } + .map { mediaFile -> val authority = "${context.packageName}.notifications.fileprovider" FileProvider.getUriForFile(context, authority, mediaFile) } + .getOrNull() } }