mirror of
https://github.com/go-gitea/gitea
synced 2024-11-14 01:35:54 +01:00
Backport #25391 by @lunny Fix #7883 Co-authored-by: Lunny Xiao <xiaolunwen@gmail.com>
This commit is contained in:
parent
28ed763f55
commit
4908cc9adf
@ -685,7 +685,11 @@ func UploadFilePost(ctx *context.Context) {
|
||||
|
||||
message := strings.TrimSpace(form.CommitSummary)
|
||||
if len(message) == 0 {
|
||||
message = ctx.Tr("repo.editor.upload_files_to_dir", form.TreePath)
|
||||
dir := form.TreePath
|
||||
if dir == "" {
|
||||
dir = "/"
|
||||
}
|
||||
message = ctx.Tr("repo.editor.upload_files_to_dir", dir)
|
||||
}
|
||||
|
||||
form.CommitMessage = strings.TrimSpace(form.CommitMessage)
|
||||
|
Loading…
Reference in New Issue
Block a user