mirror of
https://github.com/xcp-ng/xenadmin.git
synced 2024-11-25 14:27:26 +01:00
CA-245345: XenCenter doesn't mark a host as unapplicable when an update is installed via "Select update from disk" option
Signed-off-by: Mihaela Stoica <mihaela.stoica@citrix.com>
This commit is contained in:
parent
60ae28ccc6
commit
f1470d1c53
@ -233,7 +233,7 @@ namespace XenAdmin.Wizards.PatchingWizard
|
||||
{
|
||||
foreach (PatchGridViewRow row in dataGridViewPatches.Rows)
|
||||
{
|
||||
if (row.UpdateAlert.Name == Path.GetFileNameWithoutExtension(fileName))
|
||||
if (string.Equals(row.UpdateAlert.Name, Path.GetFileNameWithoutExtension(fileName), StringComparison.OrdinalIgnoreCase))
|
||||
{
|
||||
return (XenServerPatchAlert)row.UpdateAlert;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user