From 705178363ac143209e9df2ae1127991478502c2e Mon Sep 17 00:00:00 2001 From: pointfeev Date: Thu, 19 Oct 2023 13:00:05 -0400 Subject: [PATCH] fix SteamCMD download failure output --- CreamInstaller/Platforms/Steam/SteamCMD.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CreamInstaller/Platforms/Steam/SteamCMD.cs b/CreamInstaller/Platforms/Steam/SteamCMD.cs index fd89ff7..2dcafb4 100644 --- a/CreamInstaller/Platforms/Steam/SteamCMD.cs +++ b/CreamInstaller/Platforms/Steam/SteamCMD.cs @@ -137,7 +137,7 @@ internal static class SteamCMD catch (Exception e) { using DialogForm dialogForm = new(Form.ActiveForm); - if (dialogForm.Show(SystemIcons.Warning, "Failed to download SteamCMD:\n " + e.Message, "Retry", "OK") is not DialogResult.OK) + if (dialogForm.Show(SystemIcons.Warning, "Failed to download SteamCMD:\n " + e.FormatException(), "Retry", "OK") is not DialogResult.OK) return false; } }