mirror of
https://github.com/matrix-org/matrix-spec
synced 2025-12-20 16:38:37 +01:00
Make the speculator serve up errors as plain text
... so that they are legible.
This commit is contained in:
parent
e630f6c0c0
commit
2aa4773cc1
|
|
@ -135,6 +135,7 @@ func generate(dir string) error {
|
|||
}
|
||||
|
||||
func writeError(w http.ResponseWriter, code int, err error) {
|
||||
w.Header().Set("Content-Type", "text/plain")
|
||||
w.WriteHeader(code)
|
||||
io.WriteString(w, fmt.Sprintf("%v\n", err))
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue