mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-26 17:57:16 +00:00
Added logging
This commit is contained in:
parent
997a51fb70
commit
06d4c6dbda
1 changed files with 3 additions and 1 deletions
|
@ -183,8 +183,10 @@ class Core {
|
|||
throw new IllegalArgumentException("Invalid folder=" + folder.id + "/" + op.folder);
|
||||
|
||||
if (account.protocol == EntityAccount.TYPE_IMAP &&
|
||||
!folder.local && ifolder != null && !ifolder.isOpen())
|
||||
!folder.local && ifolder != null && !ifolder.isOpen()) {
|
||||
Log.w(folder.name + " is closed");
|
||||
break;
|
||||
}
|
||||
|
||||
// Fetch most recent copy of message
|
||||
EntityMessage message = null;
|
||||
|
|
Loading…
Reference in a new issue