Fetch on move if no IDLE

This commit is contained in:
M66B 2020-12-28 12:21:00 +01:00
parent 75a1691c1b
commit 3ae8067e0d
1 changed files with 3 additions and 1 deletions

View File

@ -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);