mirror of https://github.com/M66B/FairEmail.git
Prevent crash
This commit is contained in:
parent
c96f96f24b
commit
a222187739
|
@ -162,7 +162,7 @@ class Core {
|
|||
" group=" + group +
|
||||
" retry=" + retry);
|
||||
|
||||
if (!ifolder.isOpen())
|
||||
if (ifolder != null && !ifolder.isOpen())
|
||||
state.error(new FolderClosedException(ifolder));
|
||||
|
||||
// Fetch most recent copy of message
|
||||
|
|
Loading…
Reference in New Issue