aboutsummaryrefslogtreecommitdiffstats
path: root/services/repository
diff options
context:
space:
mode:
authorzeripath <art27@cantab.net>2022-01-19 21:03:15 +0000
committerGitHub <noreply@github.com>2022-01-19 21:03:15 +0000
commit6b0a71230d0ff5f9822bf889e88424f46f1ffff9 (patch)
tree84b87f2a10763f6b3c6af43d662e4d470a2ca694 /services/repository
parentc68f1281f62524858ec0b88d8f01aef5b125b2d0 (diff)
downloadgitea-6b0a71230d0ff5f9822bf889e88424f46f1ffff9.tar.gz
gitea-6b0a71230d0ff5f9822bf889e88424f46f1ffff9.zip
Stop trimming preceding and suffixing spaces from editor filenames (#18334)v1.16.0-rc1
* Stop trimming preceding and suffixing spaces from editor filenames In #5702 it was decided to trim preceding and suffixed spaces aswell as / from editing file filenames. This was because at this point in time the url-safety of Gitea was much poorer. We can now drop this requirement and file editing should work correctly. Fix #18176 Signed-off-by: Andrew Thornton <art27@cantab.net>
Diffstat (limited to 'services/repository')
-rw-r--r--services/repository/files/file.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/services/repository/files/file.go b/services/repository/files/file.go
index 7886119587..ddbced809e 100644
--- a/services/repository/files/file.go
+++ b/services/repository/files/file.go
@@ -129,7 +129,7 @@ func GetAuthorAndCommitterUsers(author, committer *IdentityOptions, doer *user_m
// CleanUploadFileName Trims a filename and returns empty string if it is a .git directory
func CleanUploadFileName(name string) string {
// Rebase the filename
- name = strings.Trim(path.Clean("/"+name), " /")
+ name = strings.Trim(path.Clean("/"+name), "/")
// Git disallows any filenames to have a .git directory in them.
for _, part := range strings.Split(name, "/") {
if strings.ToLower(part) == ".git" {