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

@ -879,10 +879,13 @@ namespace osu.Game.Database
isSendingNotificationResetEvents = true; isSendingNotificationResetEvents = true;
try try
{
lock (notificationsResetMap)
{ {
foreach (var action in notificationsResetMap.Values) foreach (var action in notificationsResetMap.Values)
action(); action();
} }
}
finally finally
{ {
isSendingNotificationResetEvents = false; isSendingNotificationResetEvents = false;