Reset "ring notified" flag when syncing a folder after a Push event
Without this (but with the new silent fixes) new messages downloaded after a Push event would only create silent notifications.
This commit is contained in:
parent
d461dece67
commit
49600c470c
1 changed files with 2 additions and 0 deletions
|
@ -598,6 +598,8 @@ public class MessagingController {
|
|||
public void synchronizeMailboxBlocking(Account account, String folderServerId) throws MessagingException {
|
||||
long folderId = getFolderId(account, folderServerId);
|
||||
|
||||
account.setRingNotified(false);
|
||||
|
||||
final CountDownLatch latch = new CountDownLatch(1);
|
||||
putBackground("synchronizeMailbox", null, () -> {
|
||||
try {
|
||||
|
|
Loading…
Reference in a new issue