mirror of
https://github.com/M66B/FairEmail.git
synced 2026-03-31 22:26:06 +02:00
Fixed crash on null sent time
This commit is contained in:
@@ -132,7 +132,9 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
||||
if (EntityFolder.isOutgoing(m1.folderType))
|
||||
return -Long.compare(m1.received, m2.received);
|
||||
else
|
||||
return -Long.compare(m1.sent, m2.sent);
|
||||
return -Long.compare(
|
||||
m1.sent == null ? 0 : m1.sent,
|
||||
m2.sent == null ? 0 : m2.sent);
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user