mirror of
https://github.com/M66B/FairEmail.git
synced 2025-12-30 01:21:11 +01:00
Encrypt by default when pro only
This commit is contained in:
@@ -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('@'));
|
||||
|
||||
Reference in New Issue
Block a user