1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-14 16:52:54 +08:00

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
commit 2ff900fd22
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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