aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--cmd/git-lfs-server/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/git-lfs-server/main.go b/cmd/git-lfs-server/main.go
index 4ff62f6..c3f4e91 100644
--- a/cmd/git-lfs-server/main.go
+++ b/cmd/git-lfs-server/main.go
@@ -146,7 +146,7 @@ func makeObjError(obj parsedBatchObject, message string, code int) batchResponse
146} 146}
147 147
148func (h *handler) handleDownloadObject(ctx context.Context, repo string, obj parsedBatchObject) batchResponseObject { 148func (h *handler) handleDownloadObject(ctx context.Context, repo string, obj parsedBatchObject) batchResponseObject {
149 fullPath := path.Join(repo, "lfs/objects", obj.firstByte, obj.secondByte, obj.fullHash) 149 fullPath := path.Join(repo+".git", "lfs/objects", obj.firstByte, obj.secondByte, obj.fullHash)
150 expiresIn := time.Hour * 24 150 expiresIn := time.Hour * 24
151 expiresInSeconds := SecondDuration(expiresIn) 151 expiresInSeconds := SecondDuration(expiresIn)
152 152