mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-27 10:17:18 +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);
|
throw new IllegalArgumentException("Invalid folder=" + folder.id + "/" + op.folder);
|
||||||
|
|
||||||
if (account.protocol == EntityAccount.TYPE_IMAP &&
|
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;
|
break;
|
||||||
|
}
|
||||||
|
|
||||||
// Fetch most recent copy of message
|
// Fetch most recent copy of message
|
||||||
EntityMessage message = null;
|
EntityMessage message = null;
|
||||||
|
|
Loading…
Reference in a new issue