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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDouwe Maan <douwe@selenight.nl>2017-07-04 22:10:34 +0300
committerDouwe Maan <douwe@selenight.nl>2017-07-04 23:16:34 +0300
commit82614f8675bd4cdcc9500f7550e4f6a0598904fb (patch)
treed18f10cc1f810f4413caed263924a515e1421786 /lib/gitlab/git/blob.rb
parent58990f1b7f86f3ab18ab6fb20dfa664179e3d738 (diff)
Fix issues with non-UTF8 filenames by always fixing the encoding of tree and blob paths
Diffstat (limited to 'lib/gitlab/git/blob.rb')
-rw-r--r--lib/gitlab/git/blob.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/gitlab/git/blob.rb b/lib/gitlab/git/blob.rb
index a7aceab4c14..ffe4f3ca95f 100644
--- a/lib/gitlab/git/blob.rb
+++ b/lib/gitlab/git/blob.rb
@@ -175,6 +175,10 @@ module Gitlab
encode! @name
end
+ def path
+ encode! @path
+ end
+
def truncated?
size && (size > loaded_size)
end