mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-28 02:37:16 +00:00
Reply/forward encrypted only when pro
This commit is contained in:
parent
2cef677367
commit
fa7723695d
1 changed files with 4 additions and 2 deletions
|
@ -3154,8 +3154,10 @@ public class FragmentCompose extends FragmentBase {
|
|||
if (ref.plain_only != null && ref.plain_only)
|
||||
data.draft.plain_only = true;
|
||||
if (ref.ui_encrypt != null && !EntityMessage.ENCRYPT_NONE.equals(ref.ui_encrypt)) {
|
||||
data.draft.encrypt = ref.ui_encrypt;
|
||||
data.draft.ui_encrypt = ref.ui_encrypt;
|
||||
if (ActivityBilling.isPro(context)) {
|
||||
data.draft.encrypt = ref.ui_encrypt;
|
||||
data.draft.ui_encrypt = ref.ui_encrypt;
|
||||
}
|
||||
}
|
||||
|
||||
if (answer > 0) {
|
||||
|
|
Loading…
Reference in a new issue