mirror of
https://github.com/matrix-org/matrix-spec
synced 2025-12-21 00:48:38 +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) {
|
func writeError(w http.ResponseWriter, code int, err error) {
|
||||||
|
w.Header().Set("Content-Type", "text/plain")
|
||||||
w.WriteHeader(code)
|
w.WriteHeader(code)
|
||||||
io.WriteString(w, fmt.Sprintf("%v\n", err))
|
io.WriteString(w, fmt.Sprintf("%v\n", err))
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue