Fixed crash on null sent time

This commit is contained in:
M66B 2018-08-06 05:39:29 +00:00
parent fb1874be66
commit b824f12a45
1 changed files with 3 additions and 1 deletions

View File

@ -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);
}
});