Fix blank dir message when uploading files from web editor (#25391)
Fix #7883
This commit is contained in:
parent
a95a7bcdf3
commit
54259dbf37
|
@ -685,7 +685,11 @@ func UploadFilePost(ctx *context.Context) {
|
||||||
|
|
||||||
message := strings.TrimSpace(form.CommitSummary)
|
message := strings.TrimSpace(form.CommitSummary)
|
||||||
if len(message) == 0 {
|
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)
|
form.CommitMessage = strings.TrimSpace(form.CommitMessage)
|
||||||
|
|
Loading…
Reference in New Issue