mirror of
https://github.com/M66B/FairEmail.git
synced 2025-03-01 01:06:11 +00:00
Disabled name/email check
This commit is contained in:
parent
c6f8d01fc1
commit
44f6a27e3d
1 changed files with 2 additions and 2 deletions
|
@ -5599,7 +5599,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
continue;
|
||||
if (!TextHelper.isSingleScript(personal))
|
||||
return true;
|
||||
if (!BuildConfig.PLAY_STORE_RELEASE && Helper.EMAIL_ADDRESS.matcher(personal).find())
|
||||
if (false && !BuildConfig.PLAY_STORE_RELEASE && Helper.EMAIL_ADDRESS.matcher(personal).find())
|
||||
return true;
|
||||
}
|
||||
|
||||
|
@ -8133,7 +8133,7 @@ public class AdapterMessage extends RecyclerView.Adapter<AdapterMessage.ViewHold
|
|||
if (tvCount.getVisibility() == View.VISIBLE) {
|
||||
result.add(context.getResources().getQuantityString(
|
||||
R.plurals.title_accessibility_messages, message.visible, message.visible));
|
||||
tvCount.setImportantForAccessibility(View.IMPORTANT_FOR_ACCESSIBILITY_NO);
|
||||
tvCount.setImportantForAccessibility(View.IMPORTANT_FOR_ACCESSIBILITY_NO);
|
||||
}
|
||||
|
||||
if (ibExpander.getVisibility() == View.VISIBLE) {
|
||||
|
|
Loading…
Reference in a new issue