mirror of
https://github.com/osukey/osukey.git
synced 2025-08-06 16:13:57 +09:00
Merge pull request #18102 from frenzibyte/fix-inspection
Wrap `BeatmapOnlineLookupQueue` cache request in a task
This commit is contained in:
@ -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)
|
||||||
|
Reference in New Issue
Block a user