Skip to content

Commit

Permalink
Fix JENKINS-17734
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Apel committed Nov 14, 2013
1 parent bc7be57 commit a35265f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/main/java/hudson/plugins/claim/ClaimedBuildsReport.java
@@ -1,7 +1,6 @@
package hudson.plugins.claim;

import hudson.Extension;
import hudson.model.Hudson;
import hudson.model.Job;
import hudson.model.RootAction;
import hudson.model.Run;
Expand Down Expand Up @@ -59,7 +58,7 @@ public View getOwner() {
if (view != null) {
return view;
} else {
return Hudson.getInstance().getView("All");
return Jenkins.getInstance().getStaplerFallback();
}
}

Expand Down

0 comments on commit a35265f

Please sign in to comment.