1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-01-03 13:44:40 +00:00

Small improvement

This commit is contained in:
M66B 2020-01-31 09:58:21 +01:00
parent 71a707fe0d
commit 190f9b1d1d

View file

@ -4931,7 +4931,7 @@ public class FragmentMessages extends FragmentBase implements SharedPreferences.
boolean[] usage = ((X509Certificate) pcert).getKeyUsage();
boolean root = (usage != null && usage[5]);
EntityCertificate record = EntityCertificate.from((X509Certificate) pcert, null);
trace.add(record.subject + (root ? " *" : ""));
trace.add((root ? "* " : "") + record.subject);
}
args.putStringArrayList("trace", trace);