[bootstrapper] Allow msi extraction on 1809 and older (#11117)

This commit is contained in:
Enrico Giordani
2021-05-05 23:17:06 -07:00
committed by GitHub
parent 0baf2cb9da
commit 0a232cd3e2
3 changed files with 13 additions and 12 deletions

View File

@@ -193,7 +193,7 @@ namespace updating
co_return false;
}
bool is_old_windows_version()
bool is_1809_or_older()
{
return !Is19H1OrHigher();
}

View File

@@ -17,5 +17,5 @@ namespace updating
std::optional<VersionHelper> get_installed_powertoys_version();
std::future<bool> uninstall_previous_msix_version_async();
bool is_old_windows_version();
bool is_1809_or_older();
}