We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 281bda6 commit 52e07bdCopy full SHA for 52e07bd
src/Microsoft.IIS.Administration.WebServer.Info/InfoHelper.cs
@@ -52,7 +52,7 @@ public static object ToJsonModel(IWebServerVersion versionProvider)
52
var obj = new {
53
name = "Microsoft Internet Information Services",
54
id = WebServerId.CreateFromPath(ManagementUnit.Current.ApplicationHostConfigPath).Uuid,
55
- supports_sni = version != null && version > new Version(8, 0),
+ supports_sni = version != null && version >= new Version(8, 0),
56
status = Enum.GetName(typeof(Status), GetStatus()).ToLower(),
57
version = GetVersion()
58
};
0 commit comments