Skip to content

Commit

Permalink
Misc: show full stack trace when map download has an error
Browse files Browse the repository at this point in the history
  • Loading branch information
Piotrekol committed May 12, 2019
1 parent 249e929 commit 78ad2c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 78ad2c6

Please sign in to comment.