1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-22 18:20:47 +08:00

Add one more lock to appease CI

This commit is contained in:
Dean Herbert
2022-06-29 22:45:19 +09:00
Unverified
parent a3b4a515fc
commit 7cb4e32c17
+5 -2
View File
@@ -880,8 +880,11 @@ namespace osu.Game.Database
try
{
foreach (var action in notificationsResetMap.Values)
action();
lock (notificationsResetMap)
{
foreach (var action in notificationsResetMap.Values)
action();
}
}
finally
{