Disable sent folder check on send

This commit is contained in:
M66B
2021-07-11 21:19:41 +02:00
parent cdd7a3ecd0
commit 4a29fc119a

View File

@@ -5204,10 +5204,12 @@ public class FragmentCompose extends FragmentBase {
if (draft.identity == null)
throw new IllegalArgumentException(context.getString(R.string.title_from_missing));
EntityAccount account = db.account().getAccount(draft.account);
EntityFolder sent = db.folder().getFolderByType(draft.account, EntityFolder.SENT);
if (account != null && account.protocol == EntityAccount.TYPE_IMAP && sent == null)
args.putBoolean("sent_missing", true);
if (false) {
EntityAccount account = db.account().getAccount(draft.account);
EntityFolder sent = db.folder().getFolderByType(draft.account, EntityFolder.SENT);
if (account != null && account.protocol == EntityAccount.TYPE_IMAP && sent == null)
args.putBoolean("sent_missing", true);
}
try {
checkAddress(ato, context);