From f4f9c6898fce52df38897834ad9956af0d7da410 Mon Sep 17 00:00:00 2001 From: Ryan Date: Fri, 9 Jan 2026 08:51:10 +0100 Subject: [PATCH] Change default response status code --- art/seafire/resources/handle-update.txx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/art/seafire/resources/handle-update.txx b/art/seafire/resources/handle-update.txx index 7936ed6..d17c947 100644 --- a/art/seafire/resources/handle-update.txx +++ b/art/seafire/resources/handle-update.txx @@ -37,7 +37,7 @@ namespace art::seafire::resources } if (!input_representation_type::can_accept_input(*content_type)) { - res.send(400); + res.send(415); return; }