From a208874e740510d0532676924c40bd7d06c09d8b Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Mon, 28 Jan 2019 11:59:10 +0900 Subject: [PATCH] Fix incorrect handling of download failures --- osu.Game/Overlays/Direct/DownloadTrackingComposite.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Overlays/Direct/DownloadTrackingComposite.cs b/osu.Game/Overlays/Direct/DownloadTrackingComposite.cs index 0d5055f5b7..dcd1c8cb03 100644 --- a/osu.Game/Overlays/Direct/DownloadTrackingComposite.cs +++ b/osu.Game/Overlays/Direct/DownloadTrackingComposite.cs @@ -103,7 +103,7 @@ namespace osu.Game.Overlays.Direct private void onRequestFailure(Exception e) { - Schedule(() => State.Value = DownloadState.Downloading); + Schedule(() => State.Value = DownloadState.NotDownloaded); } private void setAdded(BeatmapSetInfo s, bool existing, bool silent)