Merge pull request #3514 from Lakoja/fix-edgy-crashes
Do not crash on/avoid index out of bounds
This commit is contained in:
commit
b57db0589d
2 changed files with 2 additions and 2 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue