mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-04 06:20:26 +00:00
Stop processing on folder closed
This commit is contained in:
parent
c19c364bc9
commit
e476a6f3bf
1 changed files with 1 additions and 1 deletions
|
@ -218,7 +218,7 @@ class Core {
|
||||||
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");
|
Log.w(folder.name + " is closed");
|
||||||
break;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Fetch most recent copy of message
|
// Fetch most recent copy of message
|
||||||
|
|
Loading…
Reference in a new issue