From beb4fc01ed45c6dee8be4eaa0c6b6bf278a74bed Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20BIDON?= Date: Mon, 4 May 2026 22:49:09 +0200 Subject: [PATCH] fix(statuses): align http status text with current standard MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This concerns dodgy status code 451, now realigned to its current definitions. * fixes #122 Signed-off-by: Frédéric BIDON --- statuses.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/statuses.go b/statuses.go index c0f3e6b4..273d9c6c 100644 --- a/statuses.go +++ b/statuses.go @@ -60,7 +60,7 @@ var Statuses = map[int]string{ 444: "No Response", 449: "Retry With", 450: "Blocked by Windows Parental Controls", - 451: "Wrong Exchange Server", + 451: "Unavailable For Legal Reasons", 499: "Client Closed Request", 500: "Internal Server Error", 501: "Not Implemented",