From 70cd37608fc1fc72ea309bdc7ccc496275ca8f5b Mon Sep 17 00:00:00 2001 From: Jacob Gunther Date: Thu, 20 Jul 2023 14:22:13 -0500 Subject: [PATCH] Change username deprecation notice date --- src/util.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util.go b/src/util.go index d6808af..ce7a422 100644 --- a/src/util.go +++ b/src/util.go @@ -239,5 +239,5 @@ func ExtractUUID(ctx *fiber.Ctx) string { // SendUsernameDeprecation sends a deprecation warning about usernames. func SendUsernameDeprecation(ctx *fiber.Ctx) error { - return ctx.Status(http.StatusBadRequest).SendString("Deprecated: Username support has been deprecated since April 23rd 2023, please use a valid UUID instead.") + return ctx.Status(http.StatusBadRequest).SendString("Deprecated: Username support has been deprecated since 23 April 2023, please use a valid UUID instead.") }