From 78ad2c6843752bf4f31aefdaa65fca54dfd95744 Mon Sep 17 00:00:00 2001 From: Piotrekol Date: Sun, 12 May 2019 13:57:23 +0200 Subject: [PATCH] Misc: show full stack trace when map download has an error --- .../Modules/DownloadManager/API/DownloadManager.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CollectionManagerExtensionsDll/Modules/DownloadManager/API/DownloadManager.cs b/CollectionManagerExtensionsDll/Modules/DownloadManager/API/DownloadManager.cs index 3967f59..f5a6fef 100644 --- a/CollectionManagerExtensionsDll/Modules/DownloadManager/API/DownloadManager.cs +++ b/CollectionManagerExtensionsDll/Modules/DownloadManager/API/DownloadManager.cs @@ -177,7 +177,7 @@ private void Completed(object sender, AsyncCompletedEventArgs e) else if (e.Error != null) { url.OtherError = true; - url.Error = "Error: " + e.ToString(); + url.Error = "Error: " + e.Error.ToString(); error = true; } if (error)