mirror of https://github.com/M66B/FairEmail.git
Fetch on move if no IDLE
This commit is contained in:
parent
75a1691c1b
commit
3ae8067e0d
|
@ -1094,7 +1094,9 @@ class Core {
|
|||
}
|
||||
|
||||
// Fetch appended/copied when needed
|
||||
boolean fetch = (copy || !"connected".equals(target.state));
|
||||
boolean fetch = (copy ||
|
||||
!"connected".equals(target.state) ||
|
||||
!MessageHelper.hasCapability(ifolder, "IDLE"));
|
||||
if (draft || fetch)
|
||||
try {
|
||||
Log.i(target.name + " moved message fetch=" + fetch);
|
||||
|
|
Loading…
Reference in New Issue