fix SteamCMD download failure output

This commit is contained in:
pointfeev 2023-10-19 13:00:05 -04:00
parent a515a864f4
commit 705178363a

View file

@ -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;
}
}