Fixed new email notifications
This commit is contained in:
@@ -1,4 +1,5 @@
|
|||||||
0.3.1
|
0.4
|
||||||
|
* New email notifications!
|
||||||
* Fixed crash when clicking "Create new contact" button
|
* Fixed crash when clicking "Create new contact" button
|
||||||
* Fixed crash when sending email
|
* Fixed crash when sending email
|
||||||
* Fixed occasional crashes when Bote connects to / disconnects from the network
|
* Fixed occasional crashes when Bote connects to / disconnects from the network
|
||||||
|
|||||||
@@ -293,7 +293,7 @@ public class BoteHelper extends GeneralHelper {
|
|||||||
Iterator<Email> iter = emails.iterator();
|
Iterator<Email> iter = emails.iterator();
|
||||||
while (iter.hasNext()) {
|
while (iter.hasNext()) {
|
||||||
Email email = iter.next();
|
Email email = iter.next();
|
||||||
if (!email.isSet(Flag.RECENT))
|
if (!email.isRecent())
|
||||||
iter.remove();
|
iter.remove();
|
||||||
}
|
}
|
||||||
return emails;
|
return emails;
|
||||||
|
|||||||
Reference in New Issue
Block a user