Merge pull request #466 from thi/fix-apg-legacy-encryption

Fix APG legacy encryption
This commit is contained in:
cketti 2014-04-09 20:28:19 +02:00
commit 8e078bc014
1 changed files with 10 additions and 0 deletions

View File

@ -1975,6 +1975,16 @@ public class MessageCompose extends K9Activity implements OnClickListener,
}
return;
}
if (mPgpData.hasEncryptionKeys() || mPgpData.hasSignatureKey()) {
if (mPgpData.getEncryptedData() == null) {
String text = buildText(false).getText();
mPreventDraftSaving = true;
crypto.encrypt(this, text, mPgpData);
return;
}
}
}
sendMessage();