Преглед на файлове

Add Content-Disposition header for downloads (#3439)

Andrey Nering преди 7 години
родител
ревизия
fa12c282f6
променени са 1 файла, в които са добавени 1 реда и са изтрити 0 реда
  1. 1 0
      cmd/web.go

+ 1 - 0
cmd/web.go

@@ -325,6 +325,7 @@ func runWeb(ctx *cli.Context) error {
 			defer fr.Close()
 
 			ctx.Header().Set("Cache-Control", "public,max-age=86400")
+			ctx.Header().Set("Content-Disposition", fmt.Sprintf(`inline; filename="%s"`, attach.Name))
 			// Fix #312. Attachments with , in their name are not handled correctly by Google Chrome.
 			// We must put the name in " manually.
 			if err = repo.ServeData(ctx, "\""+attach.Name+"\"", fr); err != nil {