Encrypt by default when pro only

This commit is contained in:
M66B 2019-06-24 10:31:09 +02:00
parent c9facb64f6
commit 0abdc55feb
1 changed files with 1 additions and 1 deletions

View File

@ -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('@'));