Wrong boolean

This commit is contained in:
MathieuG-P
2023-11-26 16:23:09 +01:00
parent 6e9e60cd08
commit 83b2d30b66
@@ -221,7 +221,7 @@ export class SteamDownloaderService extends AbstractBsDownloaderService implemen
const downloadPromise = (async () => {
const haveDotNet = await this.isDotNet6Installed().catch(() => false);
if(true){
if(!haveDotNet){
this.showDotNetNotInstalledError();
return Promise.reject(new Error("DotNet not installed"));
}