Skip to content

Commit

Permalink
Fix for JENKINS-16657
Browse files Browse the repository at this point in the history
Added null-check for `action` in `isBuildClaimed`
  • Loading branch information
digal committed Feb 6, 2013
1 parent a2cfea5 commit c41bf0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/webapp/walldisplay.html
Expand Up @@ -353,7 +353,7 @@

$.each(actions, function(actionIndex, action) {

if (action.claimed)
if (action && action.claimed)
{
claimed = true;
}
Expand Down

0 comments on commit c41bf0c

Please sign in to comment.