mirror of
https://github.com/go-gitea/gitea
synced 2024-11-10 17:25:54 +01:00
Fix #312. Quote file names of attachments.
This commit is contained in:
parent
c4eeb803e1
commit
ad7beb78d0
@ -1079,5 +1079,7 @@ func IssueGetAttachment(ctx *middleware.Context, params martini.Params) {
|
|||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
ctx.ServeFile(attachment.Path, attachment.Name)
|
// Fix #312. Attachments with , in their name are not handled correctly by Google Chrome.
|
||||||
|
// We must put the name in " manually.
|
||||||
|
ctx.ServeFile(attachment.Path, "\"" + attachment.Name + "\"")
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user