This commit is contained in:
spherallic 2023-01-04 14:08:48 +01:00
parent 75f0f91a88
commit 4e109000fa

View file

@ -69,7 +69,6 @@ namespace CodeImp.DoomBuilder
MemoryStream stream = DownloadWebFile(Path.Combine(url, "Version.txt"));
if(stream == null)
{
ShowResult("Update check failed: failed to retrieve remote revision info.\nCheck your Internet connection and try again.");
e.Cancel = true;
return;
}
@ -82,7 +81,6 @@ namespace CodeImp.DoomBuilder
if(!int.TryParse(s, out remoterev))
{
ShowResult("Update check failed: failed to retrieve remote revision number.");
e.Cancel = true;
return;
}