mirror of https://github.com/M66B/FairEmail.git
Small improvement
This commit is contained in:
parent
9acfb90208
commit
911c5662a2
|
@ -938,6 +938,8 @@ public class EmailService implements AutoCloseable {
|
||||||
|
|
||||||
String getFingerPrintSelect() {
|
String getFingerPrintSelect() {
|
||||||
try {
|
try {
|
||||||
|
if (certificate == null)
|
||||||
|
return null;
|
||||||
String keyId = getKeyId(certificate);
|
String keyId = getKeyId(certificate);
|
||||||
String fingerPrint = getFingerPrint(certificate);
|
String fingerPrint = getFingerPrint(certificate);
|
||||||
return fingerPrint + (keyId == null ? "" : "/" + keyId);
|
return fingerPrint + (keyId == null ? "" : "/" + keyId);
|
||||||
|
|
Loading…
Reference in New Issue