diff --git a/OpenRA.Game/Download.cs b/OpenRA.Game/Download.cs index e72e43d5aa..b037276635 100644 --- a/OpenRA.Game/Download.cs +++ b/OpenRA.Game/Download.cs @@ -28,7 +28,9 @@ namespace OpenRA switch (ex.Status) { case WebExceptionStatus.NameResolutionFailure: + return "DNS lookup failed"; case WebExceptionStatus.Timeout: + return "Connection timeout"; case WebExceptionStatus.ConnectFailure: return "Cannot connect to remote server"; case WebExceptionStatus.ProtocolError: @@ -74,4 +76,4 @@ namespace OpenRA cancelled = true; } } -} \ No newline at end of file +}