Skip to content

Commit

Permalink
[JENKINS-49642] Fix proxy view recursion
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-beck committed Feb 27, 2018
1 parent c33f146 commit 9054e22
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions core/src/main/java/hudson/model/ProxyView.java
Expand Up @@ -91,6 +91,11 @@ public boolean contains(TopLevelItem item) {
return getProxiedView().contains(item);
}

@Override
public TopLevelItem getItem(String name) {
return getProxiedView().getItem(name);
}

@Override
protected void submit(StaplerRequest req) throws IOException, ServletException, FormException {
String proxiedViewName = req.getSubmittedForm().getString("proxiedViewName");
Expand Down

0 comments on commit 9054e22

Please sign in to comment.