From 58367fdeac8bbde8c774b4085633b0aed607fe74 Mon Sep 17 00:00:00 2001 From: Matthew Bowra-Dean Date: Tue, 16 Nov 2010 14:55:54 +1300 Subject: [PATCH] Fixed a case where package downloading erroring out will hang the Utility app. --- OpenRA.Utility/Command.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/OpenRA.Utility/Command.cs b/OpenRA.Utility/Command.cs index 16c52c8b39..3d1090511f 100644 --- a/OpenRA.Utility/Command.cs +++ b/OpenRA.Utility/Command.cs @@ -111,6 +111,7 @@ namespace OpenRA.Utility if (e.Error != null) { Console.WriteLine("Error: {0}", e.Error.Message); + completed = true; return; }