Add Allow-Origin: *, because YOLO

This commit is contained in:
Philipp Heckel 2022-03-25 17:17:24 -04:00
parent 5f508e1839
commit 03ad5dcff6
1 changed files with 1 additions and 0 deletions

View File

@ -380,6 +380,7 @@ func (s *Server) handleFile(w http.ResponseWriter, r *http.Request, v *visitor)
return errHTTPTooManyRequestsAttachmentBandwidthLimit
}
w.Header().Set("Content-Length", fmt.Sprintf("%d", stat.Size()))
w.Header().Set("Access-Control-Allow-Origin", "*") // CORS, allow cross-origin requests
f, err := os.Open(file)
if err != nil {
return err