aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorS.Nishio <nishio@densan-labs.net>2015-02-12 02:06:37 +0900
committerS.Nishio <nishio@densan-labs.net>2015-02-12 02:06:37 +0900
commitf30b2e4517de8eeff8045f973c5848b7c2a4709a (patch)
treed33960c5a0ea648151fbde6bab246370bd7df21e /src
parentaa276f01f37a557115220aaf3b65de2d102d23d0 (diff)
parentafe454d45e1841e14c8242e72cfc680398b3177f (diff)
downloadbbprb-f30b2e4517de8eeff8045f973c5848b7c2a4709a.tar.gz
Merge pull request #39 from hugofonseca/patch-1
fix description link
Diffstat (limited to 'src')
-rw-r--r--src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/BitbucketCause.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/BitbucketCause.java b/src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/BitbucketCause.java
index 4745f15..01e6cd1 100644
--- a/src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/BitbucketCause.java
+++ b/src/main/java/bitbucketpullrequestbuilder/bitbucketpullrequestbuilder/BitbucketCause.java
@@ -83,9 +83,9 @@ public class BitbucketCause extends Cause {
@Override
public String getShortDescription() {
- String description = "<a href=" + BITBUCKET_URL + this.getDestinationRepositoryOwner() + "/";
+ String description = "<a href=\"" + BITBUCKET_URL + this.getDestinationRepositoryOwner() + "/";
description += this.getDestinationRepositoryName() + "/pull-request/" + this.getPullRequestId();
- description += ">#" + this.getPullRequestId() + " " + this.getPullRequestTitle() + "</a>";
+ description += "\">#" + this.getPullRequestId() + " " + this.getPullRequestTitle() + "</a>";
return description;
}
}