mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-28 10:47:28 +00:00
Always keep local drafts
Encrypted messages are not added to the remote folder
This commit is contained in:
parent
33b91b05e7
commit
8e7903e07b
1 changed files with 2 additions and 1 deletions
|
@ -1883,7 +1883,8 @@ class Core {
|
|||
}
|
||||
} else {
|
||||
// Delete not synchronized messages without uid
|
||||
db.message().deleteOrphans(folder.id);
|
||||
if (!EntityFolder.DRAFTS.equals(folder.type))
|
||||
db.message().deleteOrphans(folder.id);
|
||||
}
|
||||
|
||||
int count = ifolder.getMessageCount();
|
||||
|
|
Loading…
Reference in a new issue