mirror of
https://github.com/binwiederhier/ntfy.git
synced 2025-04-04 21:57:40 +03:00
Ensure we return 429s for Matrix endpoints too; return proper error codes
This commit is contained in:
parent
ede957973b
commit
57e1104afb
4 changed files with 27 additions and 7 deletions
|
@ -147,6 +147,11 @@ func writeMatrixDiscoveryResponse(w http.ResponseWriter) error {
|
|||
// writeMatrixError logs and writes the errMatrix to the given http.ResponseWriter as a matrixResponse
|
||||
func writeMatrixError(w http.ResponseWriter, r *http.Request, v *visitor, err *errMatrix) error {
|
||||
logvr(v, r).Tag(tagMatrix).Err(err).Debug("Matrix gateway error")
|
||||
if httpErr, ok := err.err.(*errHTTP); ok {
|
||||
w.Header().Set("X-Ntfy-Error-Code", fmt.Sprintf("%d", httpErr.Code))
|
||||
w.Header().Set("X-Ntfy-Error-Message", httpErr.Message)
|
||||
w.WriteHeader(httpErr.HTTPCode)
|
||||
}
|
||||
return writeMatrixResponse(w, err.pushKey)
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue