mirror of
https://github.com/M66B/FairEmail.git
synced 2025-01-18 21:28:54 +00:00
Encrypt by default when pro only
This commit is contained in:
parent
c9facb64f6
commit
0abdc55feb
1 changed files with 1 additions and 1 deletions
|
@ -3057,7 +3057,7 @@ public class FragmentCompose extends FragmentBase {
|
|||
public void onItemSelected(AdapterView<?> parent, View view, int position, long id) {
|
||||
EntityIdentity identity = (EntityIdentity) parent.getAdapter().getItem(position);
|
||||
|
||||
encrypt = (identity != null && identity.encrypt);
|
||||
encrypt = (identity != null && identity.encrypt && Helper.isPro(getContext()));
|
||||
getActivity().invalidateOptionsMenu();
|
||||
|
||||
int at = (identity == null ? -1 : identity.email.indexOf('@'));
|
||||
|
|
Loading…
Reference in a new issue