Return early

This commit is contained in:
chimp1984 2021-01-14 20:42:36 -05:00
parent 7ba5ab5a4e
commit 5d13fdcdbb
No known key found for this signature in database
GPG key ID: 9801B4EC591F90E3

View file

@ -296,7 +296,10 @@ public class MailboxMessageService implements SetupListener, RequestDataManager.
// mailboxMessageList while getting called.
UserThread.execute(() -> {
String uid = mailboxMessage.getUid();
if (mailboxItemsByUid.containsKey(uid)) {
if (!mailboxItemsByUid.containsKey(uid)) {
return;
}
// We called removeMailboxEntryFromNetwork at processMyMailboxItem,
// but in case we have not been bootstrapped at that moment it did not get removed from the network.
// So to be sure it gets removed we try to remove it now again.
@ -308,7 +311,6 @@ public class MailboxMessageService implements SetupListener, RequestDataManager.
// call removeMailboxItemFromMap here. The onRemoved only removes foreign mailBoxMessages.
log.trace("## removeMailboxMsg uid={}", uid);
removeMailboxItemFromLocalStore(uid);
}
});
} else {
// In case the network was not ready yet we try again later