mirror of https://github.com/M66B/FairEmail.git
Fixed crash
This commit is contained in:
parent
4115ed4bbc
commit
455d6f1cd0
|
@ -3518,7 +3518,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
same = false;
|
||||
Log.i("preview changed id=" + next.id);
|
||||
}
|
||||
if (!prev.sent.equals(next.sent)) {
|
||||
if (!Objects.equals(prev.sent, next.sent)) {
|
||||
same = false;
|
||||
Log.i("sent changed id=" + next.id);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue