CA-178244: Solves the issue about duplicates in the list of updates in the Updates Tab.

This commit is contained in:
Carmen Agimof 2015-08-03 15:12:42 +01:00
parent 8264dcaba0
commit 04b204a0d9

View File

@ -72,7 +72,10 @@ namespace XenAdmin.Core
{
lock (updateAlertsLock)
{
updateAlerts.Add(update);
if(!updateAlerts.Contains(update))
{
updateAlerts.Add(update);
}
}
}
catch (Exception e)