Skip to content

Commit

Permalink
Revert "Block installation on builds higher than 25977 for now"
Browse files Browse the repository at this point in the history
This reverts commit e4661e2.
  • Loading branch information
MishaProductions committed May 29, 2024
1 parent 42c1a0a commit bbe095d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Rectify11Installer/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ private static void Main(string[] args)
// Windows 11 builds greater than 25977 have known issues
if (Environment.OSVersion.Version.Build >= 25977)
{
ShowCompatibilityMessage(false, Strings.Rectify11.compatWarnText, Strings.Rectify11.tooNewBuild);
return;
if (!ShowCompatibilityMessage(true, Strings.Rectify11.compatWarnText, Strings.Rectify11.tooNewBuild))
return;
}
}

Expand Down

0 comments on commit bbe095d

Please sign in to comment.