diff options
author | Wouter Tinus <win.acme.simple@gmail.com> | 2019-12-10 09:28:53 +0100 |
---|---|---|
committer | Wouter Tinus <win.acme.simple@gmail.com> | 2019-12-10 09:28:53 +0100 |
commit | f81bc94027f865727105e095ee2b9ef0dd478b3d (patch) | |
tree | 89c9f7271898f4ea157c1749f0248320f30e796b /src/main.lib/Services/ProxyService.cs | |
parent | 8c2f653751338974e875ba75e47791271f62f1c5 (diff) | |
download | letsencrypt-win-simple-f81bc94027f865727105e095ee2b9ef0dd478b3d.zip letsencrypt-win-simple-f81bc94027f865727105e095ee2b9ef0dd478b3d.tar.gz letsencrypt-win-simple-f81bc94027f865727105e095ee2b9ef0dd478b3d.tar.bz2 |
Make DomainParseService respect proxy settings
Diffstat (limited to 'src/main.lib/Services/ProxyService.cs')
-rw-r--r-- | src/main.lib/Services/ProxyService.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main.lib/Services/ProxyService.cs b/src/main.lib/Services/ProxyService.cs index bf7e73d..49bf293 100644 --- a/src/main.lib/Services/ProxyService.cs +++ b/src/main.lib/Services/ProxyService.cs @@ -4,10 +4,10 @@ using System.Net.Http; namespace PKISharp.WACS.Services { - internal class ProxyService + public class ProxyService { private readonly ILogService _log; - private IWebProxy _proxy; + private IWebProxy? _proxy; private readonly ISettingsService _settings; public ProxyService(ILogService log, ISettingsService settings) |