Don't show error messages when a download is user-cancelled

Resolves #1941.
This commit is contained in:
Dean Herbert
2018-01-22 13:25:49 +09:00
parent 64c32f5715
commit 53e40a77dc
2 changed files with 4 additions and 3 deletions

View File

@ -180,7 +180,6 @@ namespace osu.Game.Overlays.Direct
{
progressBar.Current.Value = 0;
progressBar.FadeOut(500);
Logger.Error(e, "Failed to get beatmap download information");
};
request.DownloadProgressed += progress => progressBar.Current.Value = progress;