Skip to content

Commit

Permalink
fix(android): validate layoutParams (#12472)
Browse files Browse the repository at this point in the history
Fixes TIMOB-28352
  • Loading branch information
garymathews authored Feb 17, 2021
1 parent b1d88f9 commit 07ca05c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -452,7 +452,7 @@ public void handleMarker(ListItemProxy item)
continue;
}
final View markedItemView = markedHolder.itemView;
if (markedItemView == null) {
if (markedItemView == null || markedItemView.getLayoutParams() == null) {
continue;
}
final boolean isVisible =
Expand Down

0 comments on commit 07ca05c

Please sign in to comment.