mirror of
https://github.com/M66B/FairEmail.git
synced 2026-04-20 16:03:29 +02:00
Fixed archiving Gmail drafts
This commit is contained in:
@@ -1416,7 +1416,7 @@ class Core {
|
||||
|
||||
// Some providers do not support the COPY operation for drafts
|
||||
boolean draft = (EntityFolder.DRAFTS.equals(folder.type) || EntityFolder.DRAFTS.equals(target.type));
|
||||
boolean duplicate = (copy && !account.isGmail());
|
||||
boolean duplicate = (copy && !account.isGmail()) || (draft && account.isGmail());
|
||||
if (draft || duplicate) {
|
||||
Log.i(folder.name + " " + (duplicate ? "copy" : "move") +
|
||||
" from " + folder.type + " to " + target.type);
|
||||
|
||||
Reference in New Issue
Block a user