Fixed new email notifications

This commit is contained in:
str4d
2014-12-16 11:44:11 +00:00
parent 40885edbf7
commit a9bf22c38f
2 changed files with 3 additions and 2 deletions

View File

@@ -1,4 +1,5 @@
0.3.1
0.4
* New email notifications!
* Fixed crash when clicking "Create new contact" button
* Fixed crash when sending email
* Fixed occasional crashes when Bote connects to / disconnects from the network

View File

@@ -293,7 +293,7 @@ public class BoteHelper extends GeneralHelper {
Iterator<Email> iter = emails.iterator();
while (iter.hasNext()) {
Email email = iter.next();
if (!email.isSet(Flag.RECENT))
if (!email.isRecent())
iter.remove();
}
return emails;