Issue Type: Bug Bug
Affects Versions: current
Assignee: Christian Pelster
Components: walldisplay
Created: 10/Jul/12 8:58 PM
Description:

util.js fails at line 145 because job.lastBuild.actions[4] is undefined (there's only 2 elements in the array at that point). quick workaround (as follows) rectifies the issue.

< if(job.lastBuild.actions[4].failCount != undefined && [...]
> if(job.lastBuild.actions[4] != undefined && job.lastBuild.actions[4].failCount != undefined [...]

Environment: Windows 2008x64, IE, Chrome, Mozilla
Project: Jenkins
Labels: plugin
Priority: Minor Minor
Reporter: Ivan Mounitsyn
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

Reply via email to