ThiagoC edited a comment on Bug JENKINS-14956

Larry,

I updated to 1.12, but now another problem is happening.

If I have a project with no Display Name (e.g. "test.test"), it works - I'm redirected to http://build/jenkins/job/test.test/. But if I define a Display Name for it (e.g. "Test Test") and then I try to favorite the project, I'm redirected to "http://build/jenkins/job/Test%20Test" and get a 404 error again.

In FavoriteProjectAction.java, I think that you should replace the code

public String getProjectName() {
    return project.getDisplayName();
}

With something like

public String getProjectName() {
    return project.getName();
}

And then it will works.

Thanks again!

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