mirror of
https://github.com/M66B/FairEmail.git
synced 2024-12-22 07:42:52 +00:00
Improved algo display
This commit is contained in:
parent
fd9f9fb455
commit
50f2fa4228
2 changed files with 2 additions and 2 deletions
|
@ -197,7 +197,7 @@ public class AdapterCertificate extends RecyclerView.Adapter<AdapterCertificate.
|
|||
String subject = certificate.subject;
|
||||
String algo = certificate.getSigAlgName();
|
||||
if (algo != null)
|
||||
subject = algo + " " + subject;
|
||||
subject = algo.replaceAll("(?i)With", "/") + " " + subject;
|
||||
tvSubject.setText(subject);
|
||||
tvAfter.setText(certificate.after == null ? null : TF.format(certificate.after));
|
||||
tvBefore.setText(certificate.before == null ? null : TF.format(certificate.before));
|
||||
|
|
|
@ -10453,7 +10453,7 @@ public class FragmentMessages extends FragmentBase
|
|||
tvExpired.setVisibility(record.isExpired(time) ? View.VISIBLE : View.GONE);
|
||||
|
||||
if (!TextUtils.isEmpty(algo))
|
||||
algo = algo.replace("WITH", "/");
|
||||
algo = algo.replace("(?i)With", "/");
|
||||
tvAlgorithm.setText(algo);
|
||||
|
||||
ibInfo.setOnClickListener(new View.OnClickListener() {
|
||||
|
|
Loading…
Reference in a new issue