mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-16 10:09:14 -05:00
fix issue with alert manager concurrency
This commit is contained in:
@ -55,7 +55,7 @@ public class AlertManager : IAlertManager
|
||||
alerts = alerts.Concat(_states[client.ClientId].AsReadOnly());
|
||||
}
|
||||
|
||||
return alerts.OrderByDescending(alert => alert.OccuredAt);
|
||||
return alerts.OrderByDescending(alert => alert.OccuredAt).ToList();
|
||||
}
|
||||
finally
|
||||
{
|
||||
|
Reference in New Issue
Block a user