mirror of
https://github.com/moparisthebest/k-9
synced 2024-11-24 02:12:15 -05:00
Fix APG legacy encryption
This commit is contained in:
parent
5640dece0f
commit
b765988423
@ -1975,6 +1975,16 @@ public class MessageCompose extends K9Activity implements OnClickListener,
|
|||||||
}
|
}
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (mPgpData.hasEncryptionKeys() || mPgpData.hasSignatureKey()) {
|
||||||
|
if (mPgpData.getEncryptedData() == null) {
|
||||||
|
String text = buildText(false).getText();
|
||||||
|
mPreventDraftSaving = true;
|
||||||
|
crypto.encrypt(this, text, mPgpData);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
sendMessage();
|
sendMessage();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user