Add one more lock to appease CI

This commit is contained in:
Dean Herbert
2022-06-29 22:45:19 +09:00
parent a3b4a515fc
commit 7cb4e32c17

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
{