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

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