1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-19 07:51:17 +08:00

Fix online lookup cache not recovering from faulted tasks

This commit is contained in:
Dean Herbert
2026-01-09 16:15:36 +09:00
Unverified
parent 2963ebae96
commit 5e4e28ef00
+1 -1
View File
@@ -81,7 +81,7 @@ namespace osu.Game.Database
pendingTasks.Enqueue((id, tcs));
// Create a request task if there's not already one.
if (pendingRequestTask == null)
if (pendingRequestTask == null || pendingRequestTask.IsFaulted)
createNewTask();
return tcs.Task;