Fix changelog overlay hard crashing on no internet connection

This commit is contained in:
Dean Herbert
2020-01-02 19:19:00 +09:00
parent 9f5f78e443
commit 132b420aaa

View File

@ -158,7 +158,8 @@ namespace osu.Game.Overlays
private Task initialFetchTask;
private void performAfterFetch(Action action) => fetchListing()?.ContinueWith(_ => Schedule(action));
private void performAfterFetch(Action action) => fetchListing()?.ContinueWith(_ =>
Schedule(action), TaskContinuationOptions.OnlyOnRanToCompletion);
private Task fetchListing()
{