Skip to content

Commit 86fdb4d

Browse files
authored
Merge pull request #803 from jeromepochat/JENKINS-73474
[JENKINS-73474] Fix GitHubAppCredentials owner inference
2 parents 270b362 + 43ce311 commit 86fdb4d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/jenkinsci/plugins/github_branch_source/GitHubAppCredentials.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -351,7 +351,7 @@ public synchronized GitHubAppCredentials withOwner(@NonNull String owner) {
351351
GitHubAppCredentials clone =
352352
new GitHubAppCredentials(getScope(), getId(), getDescription(), getAppID(), getPrivateKey());
353353
clone.apiUri = getApiUri();
354-
clone.owner = getOwner();
354+
clone.owner = owner;
355355
return clone;
356356
});
357357
}

0 commit comments

Comments
 (0)