Merge pull request #18102 from frenzibyte/fix-inspection

Wrap `BeatmapOnlineLookupQueue` cache request in a task
This commit is contained in:
Dean Herbert
2022-05-05 19:06:58 +09:00
committed by GitHub

View File

@ -153,7 +153,7 @@ namespace osu.Game.Beatmaps
} }
}; };
cacheDownloadRequest.PerformAsync(); Task.Run(() => cacheDownloadRequest.PerformAsync());
} }
private bool checkLocalCache(BeatmapSetInfo set, BeatmapInfo beatmapInfo) private bool checkLocalCache(BeatmapSetInfo set, BeatmapInfo beatmapInfo)