parent
e2d86067cc
commit
988728be3e
1 changed files with 2 additions and 2 deletions
|
@ -1677,7 +1677,7 @@ public final class ConversationItem extends RelativeLayout implements BindableCo
|
|||
!current.getRecipient().equals(previous.get().getRecipient());
|
||||
} else {
|
||||
return !previous.isPresent() || previous.get().isUpdate() || !DateUtils.isSameDay(current.getTimestamp(), previous.get().getTimestamp()) ||
|
||||
current.isOutgoing() != previous.get().isOutgoing();
|
||||
current.isOutgoing() != previous.get().isOutgoing() || previous.get().isSecure() != current.isSecure();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1687,7 +1687,7 @@ public final class ConversationItem extends RelativeLayout implements BindableCo
|
|||
!current.getRecipient().equals(next.get().getRecipient()) || !current.getReactions().isEmpty();
|
||||
} else {
|
||||
return !next.isPresent() || next.get().isUpdate() || !DateUtils.isSameDay(current.getTimestamp(), next.get().getTimestamp()) ||
|
||||
current.isOutgoing() != next.get().isOutgoing() || !current.getReactions().isEmpty();
|
||||
current.isOutgoing() != next.get().isOutgoing() || !current.getReactions().isEmpty() || next.get().isSecure() != current.isSecure();
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue