From 2226a5e2fab6e5952d31b54412c07a9a065caffb Mon Sep 17 00:00:00 2001 From: clienthax Date: Fri, 7 Jan 2022 17:56:13 +0000 Subject: [PATCH] Bump windows supported build check. --- .../LogParserResultFormatter.GeneralNotesSection.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.GeneralNotesSection.cs b/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.GeneralNotesSection.cs index 818cf977..3db8f992 100644 --- a/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.GeneralNotesSection.cs +++ b/CompatBot/Utils/ResultFormatters/LogParserResultFormatter.GeneralNotesSection.cs @@ -249,7 +249,7 @@ namespace CompatBot.Utils.ResultFormatters if (items["os_type"] == "Windows" && Version.TryParse(items["os_version"], out var winVersion) - && (winVersion.Major < 10 || winVersion.Build < 19041)) + && (winVersion.Major < 10 || winVersion.Build < 19042)) notes.Add("⚠ Please [upgrade your Windows](https://www.microsoft.com/software-download/windows10) to currently supported version"); var gpuInfo = items["gpu_info"] ?? items["discrete_gpu_info"];