GraphQL: remove message box when cert is not found lol

This commit is contained in:
Jonathan Jenne
2020-05-15 11:34:59 +02:00
parent cfa2800c5b
commit 9a70252ff3
2 changed files with 3 additions and 3 deletions

View File

@@ -44,7 +44,7 @@ Public Class GraphQLInterface
Dim oFoundCerts = oStore.Certificates.Find(X509FindType.FindByThumbprint, CertificateFingerprint, False)
If oFoundCerts.Count = 0 Then
MsgBox($"Das Zertifikat mit dem Fingerprint [{CertificateFingerprint}] konnte nicht im Store [{oStore.Name}] gefunden werden!")
_logger.Warn("Certificate could not be found! Exiting.")
Exit Sub
End If