mirror of
https://github.com/OpenSim-NGC/OpenSim-Sasquatch.git
synced 2024-11-21 14:29:10 -07:00
fix built
This commit is contained in:
parent
a86b6c0d21
commit
7587595f92
1 changed files with 2 additions and 1 deletions
|
@ -1579,9 +1579,10 @@ namespace OpenSim.Framework
|
|||
}
|
||||
|
||||
// Convert .pem (like Let's Encrypt files) to X509Certificate2 certificate.
|
||||
X509Certificate2 certificate;
|
||||
try
|
||||
{
|
||||
X509Certificate2 certificate = X509Certificate2.CreateFromPemFile(certPath, keyPath);
|
||||
certificate = X509Certificate2.CreateFromPemFile(certPath, keyPath);
|
||||
}
|
||||
catch(CryptographicException e)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue