Do not crash on/avoid index out of bounds

This commit is contained in:
Lakoja 2023-04-05 15:48:40 +02:00
commit bca98d2f48
2 changed files with 2 additions and 2 deletions

View file

@ -161,7 +161,7 @@ class NotificationsFragment :
binding.recyclerView,
this
) { pos: Int ->
val notification = adapter.snapshot()[pos]
val notification = adapter.snapshot().getOrNull(pos)
// We support replies only for now
if (notification is NotificationViewData) {
notification.statusViewData