Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitaly.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'internal/gitaly/service/commit/list_files.go')
-rw-r--r--internal/gitaly/service/commit/list_files.go1
1 files changed, 1 insertions, 0 deletions
diff --git a/internal/gitaly/service/commit/list_files.go b/internal/gitaly/service/commit/list_files.go
index 960398a49..b143eb42c 100644
--- a/internal/gitaly/service/commit/list_files.go
+++ b/internal/gitaly/service/commit/list_files.go
@@ -97,6 +97,7 @@ func (s *server) listFiles(repo git.RepositoryExecutor, revision string, stream
if err := sender.Send(&gitalypb.ListFilesResponse{
Paths: [][]byte{[]byte(entry.Path)},
Oids: []string{entry.ObjectID.String()},
+ Modes: [][]byte{entry.Mode},
}); err != nil {
return err
}