Sort emails newest-first

This commit is contained in:
str4d
2014-02-28 01:03:35 +00:00
parent e07a5fa574
commit b88dc979ea

View File

@ -25,7 +25,7 @@ public class EmailListLoader extends AsyncTaskLoader<List<Email>> implements
public List<Email> loadInBackground() {
List<Email> emails = null;
try {
emails = BoteHelper.getEmails(mFolder, null, false);
emails = BoteHelper.getEmails(mFolder, null, true);
} catch (PasswordException pe) {
// TODO: Handle this error properly (get user to log in)
}