From 164976dcc002c23f94a3583e9ac3c6bff17345c1 Mon Sep 17 00:00:00 2001 From: Ryan Schneider <rschneider@salsalabs.com> Date: Mon, 21 Jan 2013 14:41:22 -0500 Subject: [PATCH] Added Fogbugz post-receive groovy script --- 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 1b90c7d..dd09235 100644 --- a/src/com/gitblit/utils/IssueUtils.java +++ b/src/com/gitblit/utils/IssueUtils.java @@ -380,7 +380,7 @@ 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; -- Gitblit v1.9.1