Commit a829ae92 authored by Honfika's avatar Honfika

Certificate Issuer/Name setter fix

parent 9cec76d3
......@@ -80,7 +80,7 @@ namespace Titanium.Web.Proxy
public string RootCertificateIssuerName
{
get { return CertificateManager.Issuer; }
set { CertificateManager.RootCertificateName = value; }
set { CertificateManager.Issuer = value; }
}
/// <summary>
......@@ -93,7 +93,7 @@ namespace Titanium.Web.Proxy
public string RootCertificateName
{
get { return CertificateManager.RootCertificateName; }
set { CertificateManager.Issuer = value; }
set { CertificateManager.RootCertificateName = value; }
}
/// <summary>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment