We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents b980ddd + 63cf63c commit a7c3110Copy full SHA for a7c3110
CHANGELOG.md
@@ -1,2 +1,5 @@
1
+v1.0.1
2
+- Fixed issue with SANs not being read correctly.
3
+
4
v1.0
- -Initial Release.
5
+- Initial Release.
cscglobal-caplugin/RequestManager.cs
@@ -230,7 +230,7 @@ private List<SubjectAlternativeName> GetSubjectAlternativeNames(EnrollmentProduc
230
var subjectNameList = new List<SubjectAlternativeName>();
231
var methodType = productInfo.ProductParameters["Domain Control Validation Method"];
232
233
- foreach (var v in sans["dns"])
+ foreach (var v in sans["dnsname"])
234
{
235
var domainName = v;
236
var san = new SubjectAlternativeName();
0 commit comments