Handle EventRedacted case. Fixes #5569
This commit is contained in:
parent
1c5f185d6a
commit
43319f6e90
3 changed files with 21 additions and 0 deletions
|
|
@ -66,6 +66,10 @@ class RustNotificationService(
|
|||
Timber.d("Could not retrieve event for notification with $eventId - event filtered out")
|
||||
put(eventId, Result.failure(NotificationResolverException.EventFilteredOut))
|
||||
}
|
||||
NotificationStatus.EventRedacted -> {
|
||||
Timber.d("Could not retrieve event for notification with $eventId - event redacted")
|
||||
put(eventId, Result.failure(NotificationResolverException.EventRedacted))
|
||||
}
|
||||
}
|
||||
}
|
||||
is BatchNotificationResult.Error -> {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue