Fix malfunctioning download checker

This commit is contained in:
Manuel Thalmann 2023-07-15 19:56:45 +02:00
parent 4eb23fee10
commit 06dd879887

View file

@ -40,12 +40,13 @@ function Start-AutomatedDownload() {
$stream.Close(); $stream.Close();
} }
return $false;
} }
catch { catch {
return $true; return $true;
} }
} }
return $false;
} else { } else {
return $true; return $true;
} }