summaryrefslogtreecommitdiff
path: root/lib/gitlab/git/tree.rb
diff options
context:
space:
mode:
authorDouwe Maan <douwe@selenight.nl>2017-07-04 14:10:34 -0500
committerDouwe Maan <douwe@selenight.nl>2017-07-04 15:16:34 -0500
commit82614f8675bd4cdcc9500f7550e4f6a0598904fb (patch)
treed18f10cc1f810f4413caed263924a515e1421786 /lib/gitlab/git/tree.rb
parent58990f1b7f86f3ab18ab6fb20dfa664179e3d738 (diff)
downloadgitlab-ce-82614f8675bd4cdcc9500f7550e4f6a0598904fb.tar.gz
Fix issues with non-UTF8 filenames by always fixing the encoding of tree and blob pathsdm-encode-tree-and-blob-paths
Diffstat (limited to 'lib/gitlab/git/tree.rb')
-rw-r--r--lib/gitlab/git/tree.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/gitlab/git/tree.rb b/lib/gitlab/git/tree.rb
index b9afa05c819..b6d4e6cfe46 100644
--- a/lib/gitlab/git/tree.rb
+++ b/lib/gitlab/git/tree.rb
@@ -80,6 +80,10 @@ module Gitlab
encode! @name
end
+ def path
+ encode! @path
+ end
+
def dir?
type == :tree
end