fix timestamp not updating in notifications (#1416)
This commit is contained in:
parent
1a1be57d54
commit
57edf86495
1 changed files with 1 additions and 1 deletions
|
@ -202,7 +202,7 @@ public class NotificationsAdapter extends RecyclerView.Adapter {
|
|||
concreteNotificaton.getId());
|
||||
} else {
|
||||
if (payloadForHolder instanceof List)
|
||||
for (Object item : payloads) {
|
||||
for (Object item : (List)payloadForHolder) {
|
||||
if (StatusBaseViewHolder.Key.KEY_CREATED.equals(item)) {
|
||||
holder.setCreatedAt(statusViewData.getCreatedAt());
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue