Skip to content

Commit

Permalink
XSI-1177/CA-362931: missing null check.
Browse files Browse the repository at this point in the history
Signed-off-by: Konstantina Chremmou <konstantina.chremmou@citrix.com>
  • Loading branch information
kc284 committed Feb 17, 2022
1 parent 2f096ff commit fabe186
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -463,7 +463,7 @@ protected virtual List<CheckGroup> GenerateCommonChecks(List<Host> applicableSer
groups.Add(new CheckGroup(Messages.CHECKING_CANEVACUATE_STATUS, evacuateChecks));
}

var newServerversion = highestNewVersion ?? UpdateAlert.NewServerVersion;
var newServerversion = highestNewVersion ?? UpdateAlert?.NewServerVersion;

if (newServerversion != null)
{
Expand Down

0 comments on commit fabe186

Please sign in to comment.