Merge remote-tracking branch 'upstream/master' into timeshift-wip

This commit is contained in:
Dean Herbert 2018-12-26 22:42:24 +09:00
commit bfbd7e5106

View File

@ -92,7 +92,11 @@ namespace osu.Game.Online.API
public void Fail(Exception e) public void Fail(Exception e)
{ {
if (cancelled) return; if (WebRequest?.Completed == true)
return;
if (cancelled)
return;
cancelled = true; cancelled = true;
WebRequest?.Abort(); WebRequest?.Abort();