Skip to content

Commit

Permalink
Merge pull request #106 from wpieters/patch-1
Browse files Browse the repository at this point in the history
Fix `null/null` repository URL - 
Bitbucket has changed their API recently and this change caused triggering thousands of builds
  • Loading branch information
damovsky committed Feb 18, 2017
2 parents a352fbf + 70b0715 commit 325f247
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ public String getFullName() {
@JsonProperty("full_name")
public void setFullName(String fullName) {
// Also extract owner- and reponame
if (name != null) {
if (fullName != null) {
this.ownerName = fullName.split("/")[0];
this.repositoryName = fullName.split("/")[1];
}
Expand Down

0 comments on commit 325f247

Please sign in to comment.