diff options
author | James Moger <james.moger@gitblit.com> | 2013-01-11 23:53:32 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2013-01-11 23:53:32 -0500 |
commit | e4e68298c2f55c93dc2464e26a24b119a649e642 (patch) | |
tree | 80f3094fb062fc26be705fd8f5c86fa03cc97aea /src/com/gitblit/utils/IssueUtils.java | |
parent | 5316d20e861640867d10405b25cfe75aeca0a34c (diff) | |
download | gitblit-e4e68298c2f55c93dc2464e26a24b119a649e642.tar.gz gitblit-e4e68298c2f55c93dc2464e26a24b119a649e642.zip |
Show indicators for Sparkleshared repositories
Diffstat (limited to 'src/com/gitblit/utils/IssueUtils.java')
-rw-r--r-- | src/com/gitblit/utils/IssueUtils.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/gitblit/utils/IssueUtils.java b/src/com/gitblit/utils/IssueUtils.java index 1b90c7d6..dd09235b 100644 --- a/src/com/gitblit/utils/IssueUtils.java +++ b/src/com/gitblit/utils/IssueUtils.java @@ -380,7 +380,7 @@ public class IssueUtils { String issuePath = getIssuePath(issueId);
RevTree tree = JGitUtils.getCommit(repository, GB_ISSUES).getTree();
byte[] content = JGitUtils
- .getByteContent(repository, tree, issuePath + "/" + attachment.id);
+ .getByteContent(repository, tree, issuePath + "/" + attachment.id, false);
attachment.content = content;
attachment.size = content.length;
return attachment;
|