1
0
Fork 0

fixed lookup url

master
Bob Carroll 2013-05-23 18:22:06 -07:00
parent 6648210199
commit 8f465f6d34
1 changed files with 1 additions and 1 deletions

View File

@ -77,7 +77,7 @@ public final class Comment extends Resource {
JSONObject result = null;
try {
result = restclient.get(RESOURCE_URI + issue + "/comment/" + id);
result = restclient.get(RESOURCE_URI + "issue/" + issue + "/comment/" + id);
} catch (Exception ex) {
throw new JiraException("Failed to retrieve comment " + id + " on issue " + issue, ex);
}