Small improvement

This commit is contained in:
M66B 2020-01-31 09:58:21 +01:00
parent 71a707fe0d
commit 190f9b1d1d
1 changed files with 1 additions and 1 deletions

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);