mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 14:27:26 +01:00
CA-178244: Solves the issue about duplicates in the list of updates in the Updates Tab.
This commit is contained in:
parent
8264dcaba0
commit
04b204a0d9
@ -72,7 +72,10 @@ namespace XenAdmin.Core
|
||||
{
|
||||
lock (updateAlertsLock)
|
||||
{
|
||||
updateAlerts.Add(update);
|
||||
if(!updateAlerts.Contains(update))
|
||||
{
|
||||
updateAlerts.Add(update);
|
||||
}
|
||||
}
|
||||
}
|
||||
catch (Exception e)
|
||||
|
Loading…
Reference in New Issue
Block a user