mirror of
https://github.com/ppy/osu.git
synced 2025-01-21 10:42:54 +08:00
Merge pull request #18102 from frenzibyte/fix-inspection
Wrap `BeatmapOnlineLookupQueue` cache request in a task
This commit is contained in:
commit
2ff900fd22
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user