fix: Use 404 instead of 400 (and include sender)

This commit is contained in:
timedout
2026-01-22 14:45:55 +00:00
committed by Jade Ellis
parent a9ebdf58e2
commit d15ac1d3c1
2 changed files with 4 additions and 1 deletions
+2 -1
View File
@@ -85,7 +85,8 @@ pub(super) fn bad_request_code(kind: &ErrorKind) -> StatusCode {
| Unrecognized => StatusCode::METHOD_NOT_ALLOWED,
// 404
| NotFound | NotImplemented | FeatureDisabled => StatusCode::NOT_FOUND,
| NotFound | NotImplemented | FeatureDisabled | SenderIgnored { .. } =>
StatusCode::NOT_FOUND,
// 403
| GuestAccessForbidden