diff options
author | Wouter Tinus <win.acme.simple@gmail.com> | 2020-03-04 21:39:09 +0100 |
---|---|---|
committer | Wouter Tinus <win.acme.simple@gmail.com> | 2020-03-04 21:39:09 +0100 |
commit | 70362142c245e3b2a8bec0e920f98292ddbc0b9f (patch) | |
tree | dca192076e11be2c9dcc70af0528279f9842668b /src/main.lib/Services/NotificationService.cs | |
parent | 7aa5ceebbd8c872efdc38c52fe7cbfce83db5270 (diff) | |
download | letsencrypt-win-simple-70362142c245e3b2a8bec0e920f98292ddbc0b9f.zip letsencrypt-win-simple-70362142c245e3b2a8bec0e920f98292ddbc0b9f.tar.gz letsencrypt-win-simple-70362142c245e3b2a8bec0e920f98292ddbc0b9f.tar.bz2 |
fix #1431
Diffstat (limited to 'src/main.lib/Services/NotificationService.cs')
-rw-r--r-- | src/main.lib/Services/NotificationService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.lib/Services/NotificationService.cs b/src/main.lib/Services/NotificationService.cs index 6800094..29c2858 100644 --- a/src/main.lib/Services/NotificationService.cs +++ b/src/main.lib/Services/NotificationService.cs @@ -96,7 +96,7 @@ namespace PKISharp.WACS.Services } else { - return string.Join(", ", cache.HostNames); + return string.Join(", ", cache.SanNames); } } catch |